diff --git a/.github/workflows/sample-distribution.yml b/.github/workflows/sample-distribution.yml index fd4b2c14bd..68fe287139 100644 --- a/.github/workflows/sample-distribution.yml +++ b/.github/workflows/sample-distribution.yml @@ -11,10 +11,11 @@ jobs: - uses: actions/checkout@v2 with: token: ${{ secrets.VERSION_BUMP_TOKEN }} - - name: Install RubyGems - run: | - cd examples/SampleApp/ios - bundle update --bundler + - name: Install Ruby and Gems + uses: ruby/setup-ruby@v1 + with: + working-directory: examples/SampleApp + bundler-cache: true - name: RN setup uses: nick-invision/retry@v2 with: @@ -24,9 +25,15 @@ jobs: yarn && yarn bootstrap-ci; cd package/native-package yarn; - cd ../../examples/SampleApp + - name: iOS Pods setup + uses: nick-invision/retry@v2 + with: + timeout_minutes: 30 + max_attempts: 3 + command: | + cd examples/SampleApp cd ios - pod update RCT-Folly --no-repo-update && pod install + bundle exec pod install - name: Build and release Testflight QA env: MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} @@ -35,7 +42,7 @@ jobs: APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }} run: | - cd examples/SampleApp/ios + cd examples/SampleApp bundle exec fastlane deploy_to_testflight_qa build_and_deploy_android_s3: diff --git a/examples/NativeMessaging/.buckconfig b/examples/NativeMessaging/.buckconfig deleted file mode 100644 index 934256cb29..0000000000 --- a/examples/NativeMessaging/.buckconfig +++ /dev/null @@ -1,6 +0,0 @@ - -[android] - target = Google Inc.:Google APIs:23 - -[maven_repositories] - central = https://repo1.maven.org/maven2 diff --git a/examples/NativeMessaging/.eslintrc.json b/examples/NativeMessaging/.eslintrc.json deleted file mode 100644 index 23702247b6..0000000000 --- a/examples/NativeMessaging/.eslintrc.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "root": true, - "env": { - "browser": true, - "es6": true - }, - "extends": ["eslint:recommended", "plugin:react/recommended", "plugin:jest/recommended"], - "parser": "babel-eslint", - "parserOptions": { - "ecmaFeatures": { - "modules": true - }, - "ecmaVersion": 2018, - "sourceType": "module" - }, - "plugins": ["babel", "markdown", "better-styled-components", "sort-destructure-keys"], - "rules": { - "array-callback-return": 2, - "arrow-body-style": 2, - "better-styled-components/sort-declarations-alphabetically": 0, - "comma-dangle": 0, - "babel/no-invalid-this": 2, - "default-case": 2, - "eqeqeq": [2, "smart"], - "jest/expect-expect": 0, - "jest/no-conditional-expect": 0, - "jsx-quotes": ["error", "prefer-single"], - "linebreak-style": [2, "unix"], - "no-console": 0, - "no-mixed-spaces-and-tabs": 1, - "no-self-compare": 2, - "no-underscore-dangle": [2, { "allowAfterThis": true }], - "no-unused-vars": [1, { "ignoreRestSiblings": true }], - "no-useless-concat": 2, - "no-var": 2, - "object-shorthand": 1, - "prefer-const": 1, - "react/jsx-sort-props": [ - "error", - { - "callbacksLast": false, - "ignoreCase": true, - "noSortAlphabetically": false, - "reservedFirst": false, - "shorthandFirst": false, - "shorthandLast": false - } - ], - "react/prop-types": 0, - "require-await": 2, - "semi": [1, "always"], - "sort-destructure-keys/sort-destructure-keys": [2, { "caseSensitive": false }], - "sort-imports": [ - "error", - { - "allowSeparatedGroups": true, - "ignoreCase": true, - "ignoreDeclarationSort": true, - "ignoreMemberSort": false, - "memberSyntaxSortOrder": ["none", "all", "multiple", "single"] - } - ], - "sort-keys": ["error", "asc", { "caseSensitive": false, "minKeys": 2, "natural": false }], - "valid-typeof": 2 - }, - "settings": { - "import/resolver": { - "babel-module": {}, - "node": { - "extensions": [".js", ".jsx", ".ts", ".tsx"], - "paths": ["src"] - } - }, - "react": { - "pragma": "React", - "version": "detect" - } - }, - "overrides": [ - { - "files": ["*.md"], - "rules": { - "no-undef": 0, - "react/jsx-no-undef": 0, - "react/react-in-jsx-scope": 0, - "semi": 0 - } - }, - { - "env": { - "es6": true, - "browser": true - }, - "extends": [ - "@react-native-community", - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:jest/recommended", - "plugin:prettier/recommended", - "plugin:react/recommended", - "prettier" - ], - "files": ["**/*.ts", "**/*.tsx"], - "parser": "@typescript-eslint/parser", - "parserOptions": { - "ecmaFeatures": { - "modules": true, - "jsx": true - }, - "ecmaVersion": 2018, - "sourceType": "module" - }, - "plugins": [ - "@typescript-eslint", - "babel", - "markdown", - "prettier", - "react", - "typescript-sort-keys", - "better-styled-components", - "sort-destructure-keys" - ], - "rules": { - "@typescript-eslint/explicit-module-boundary-types": 0, - "@typescript-eslint/no-empty-interface": 0, - "@typescript-eslint/ban-ts-comment": 0, - "@typescript-eslint/no-var-requires": 0, - "better-styled-components/sort-declarations-alphabetically": 1, - "react-hooks/exhaustive-deps": 0, - "react-native/no-inline-styles": 0, - "array-callback-return": 2, - "arrow-body-style": 2, - "comma-dangle": 0, - "babel/no-invalid-this": 2, - "default-case": 2, - "eqeqeq": [2, "smart"], - "linebreak-style": [2, "unix"], - "jsx-quotes": ["error", "prefer-single"], - "no-console": 0, - "no-mixed-spaces-and-tabs": 1, - "no-self-compare": 2, - "no-underscore-dangle": [2, { "allowAfterThis": true }], - "no-unused-vars": [1, { "ignoreRestSiblings": true }], - "no-useless-concat": 2, - "no-var": 2, - "object-shorthand": 1, - "prefer-const": 1, - "react/display-name": 0, - "react/jsx-sort-props": [ - "error", - { - "callbacksLast": false, - "ignoreCase": true, - "noSortAlphabetically": false, - "reservedFirst": false, - "shorthandFirst": false, - "shorthandLast": false - } - ], - "react/prop-types": 0, - "require-await": 2, - "semi": [1, "always"], - "sort-destructure-keys/sort-destructure-keys": [2, { "caseSensitive": false }], - "sort-imports": [ - "error", - { - "allowSeparatedGroups": true, - "ignoreCase": true, - "ignoreDeclarationSort": true, - "ignoreMemberSort": false, - "memberSyntaxSortOrder": ["none", "all", "multiple", "single"] - } - ], - "sort-keys": ["error", "asc", { "caseSensitive": false, "minKeys": 2, "natural": false }], - "typescript-sort-keys/interface": [ - "error", - "asc", - { "caseSensitive": false, "natural": true, "requiredFirst": true } - ], - "typescript-sort-keys/string-enum": [ - "error", - "asc", - { "caseSensitive": false, "natural": true } - ], - "valid-typeof": 2 - } - } - ] -} diff --git a/examples/NativeMessaging/.flowconfig b/examples/NativeMessaging/.flowconfig deleted file mode 100644 index 4321e5fa9a..0000000000 --- a/examples/NativeMessaging/.flowconfig +++ /dev/null @@ -1,63 +0,0 @@ -[ignore] -; We fork some components by platform -.*/*[.]android.js - -; Ignore "BUCK" generated dirs -/\.buckd/ - -; Ignore polyfills -node_modules/react-native/Libraries/polyfills/.* - -; Flow doesn't support platforms -.*/Libraries/Utilities/LoadingView.js - -[untyped] -.*/node_modules/@react-native-community/cli/.*/.* - -[include] - -[libs] -node_modules/react-native/interface.js -node_modules/react-native/flow/ - -[options] -emoji=true - -extract_by_default=true - -module.file_ext=.js -module.file_ext=.json -module.file_ext=.ios.js - -munge_underscores=true - -module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' -module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' - -suppress_type=$FlowIssue -suppress_type=$FlowFixMe -suppress_type=$FlowFixMeProps -suppress_type=$FlowFixMeState - -[lints] -sketchy-null-number=warn -sketchy-null-mixed=warn -sketchy-number=warn -untyped-type-import=warn -nonstrict-import=warn -deprecated-type=warn -unsafe-getters-setters=warn -unnecessary-invariant=warn -signature-verification-failure=warn - -[strict] -deprecated-type -nonstrict-import -sketchy-null -unclear-type -unsafe-getters-setters -untyped-import -untyped-type-import - -[version] -^0.149.0 diff --git a/examples/NativeMessaging/.gitattributes b/examples/NativeMessaging/.gitattributes deleted file mode 100644 index 59b845bf91..0000000000 --- a/examples/NativeMessaging/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -# Windows files should use crlf line endings -# https://help.github.com/articles/dealing-with-line-endings/ -*.bat text eol=crlf \ No newline at end of file diff --git a/examples/NativeMessaging/.gitignore b/examples/NativeMessaging/.gitignore deleted file mode 100644 index 13d1986d4d..0000000000 --- a/examples/NativeMessaging/.gitignore +++ /dev/null @@ -1,59 +0,0 @@ -# OSX -# -.DS_Store - -# Xcode -# -build/ -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 -xcuserdata -*.xccheckout -*.moved-aside -DerivedData -*.hmap -*.ipa -*.xcuserstate - -# Android/IntelliJ -# -build/ -.idea -.gradle -local.properties -*.iml -!debug.keystore - -# node.js -# -node_modules/ -npm-debug.log -yarn-error.log - -# BUCK -buck-out/ -\.buckd/ -*.keystore - -# fastlane -# -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the -# screenshots whenever they are needed. -# For more information about the recommended setup visit: -# https://docs.fastlane.tools/best-practices/source-control/ - -*/fastlane/report.xml -*/fastlane/Preview.html -*/fastlane/screenshots - -# Bundle artifact -*.jsbundle - -# CocoaPods -/ios/Pods/ diff --git a/examples/NativeMessaging/.watchmanconfig b/examples/NativeMessaging/.watchmanconfig deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/examples/NativeMessaging/.watchmanconfig +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/examples/NativeMessaging/App.js b/examples/NativeMessaging/App.js deleted file mode 100644 index f25eec6d6a..0000000000 --- a/examples/NativeMessaging/App.js +++ /dev/null @@ -1,198 +0,0 @@ -/* eslint-disable react/display-name */ -import React, { useContext, useEffect, useMemo, useState } from 'react'; -import { LogBox, SafeAreaView, useColorScheme, View } from 'react-native'; -import { DarkTheme, DefaultTheme, NavigationContainer } from '@react-navigation/native'; -import { createStackNavigator, useHeaderHeight } from '@react-navigation/stack'; -import { SafeAreaProvider, useSafeAreaInsets } from 'react-native-safe-area-context'; -import { StreamChat } from 'stream-chat'; -import { - Channel, - ChannelList, - Chat, - MessageInput, - MessageList, - OverlayProvider, - Streami18n, - Thread, - useAttachmentPickerContext, -} from 'stream-chat-react-native'; - -import { useStreamChatTheme } from './useStreamChatTheme'; - -LogBox.ignoreAllLogs(true); - -const chatClient = StreamChat.getInstance('q95x9hkbyd6p'); -const userToken = - 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoicm9uIn0.eRVjxLvd4aqCEHY_JRa97g6k7WpHEhxL7Z4K4yTot1c'; -const user = { - id: 'ron', -}; - -const filters = { - example: 'example-apps', - members: { $in: ['ron'] }, - type: 'messaging', -}; -const sort = { last_message_at: -1 }; -const options = { - state: true, - watch: true, -}; - -/** - * Start playing with streami18n instance here: - * Please refer to description of this PR for details: https://github.com/GetStream/stream-chat-react-native/pull/150 - */ -const streami18n = new Streami18n({ - language: 'en', -}); - -const ChannelListScreen = ({ navigation }) => { - const { setChannel } = useContext(AppContext); - - const memoizedFilters = useMemo(() => filters, []); - - return ( - - - { - setChannel(channel); - navigation.navigate('Channel'); - }} - options={options} - sort={sort} - /> - - - ); -}; - -const ChannelScreen = ({ navigation }) => { - const { channel, setThread, thread } = useContext(AppContext); - const headerHeight = useHeaderHeight(); - const { setTopInset } = useAttachmentPickerContext(); - - useEffect(() => { - setTopInset(headerHeight); - }, [headerHeight]); - - return ( - - - - - { - setThread(thread); - navigation.navigate('Thread'); - }} - /> - - - - - - ); -}; - -const ThreadScreen = () => { - const { channel, setThread, thread } = useContext(AppContext); - const headerHeight = useHeaderHeight(); - - return ( - - - - - setThread(null)} /> - - - - - ); -}; - -const Stack = createStackNavigator(); - -const AppContext = React.createContext(); - -const App = () => { - const colorScheme = useColorScheme(); - const { bottom } = useSafeAreaInsets(); - const theme = useStreamChatTheme(); - - const [channel, setChannel] = useState(); - const [clientReady, setClientReady] = useState(false); - const [thread, setThread] = useState(); - - useEffect(() => { - const setupClient = async () => { - await chatClient.connectUser(user, userToken); - - setClientReady(true); - }; - - setupClient(); - }, []); - - return ( - - - - {clientReady && ( - - ({ - headerBackTitle: 'Back', - headerRight: () => <>, - headerTitle: channel?.data?.name, - })} - /> - - ({ headerLeft: () => <> })} - /> - - )} - - - - ); -}; - -export default () => { - const theme = useStreamChatTheme(); - return ( - - - - ); -}; diff --git a/examples/NativeMessaging/Readme.md b/examples/NativeMessaging/Readme.md deleted file mode 100644 index b580cbe22b..0000000000 --- a/examples/NativeMessaging/Readme.md +++ /dev/null @@ -1,37 +0,0 @@ -# Native messaging example app - -1. Please make sure you have installed necessary dependencies depending on your development OS and target OS. Follow the guidelines given on official React Native documentation for installing dependencies: # -2. Make sure node version is >= v10.13.0 -3. Start the simulator - -4. ```bash - git clone https://github.com/GetStream/stream-chat-react-native.git - cd stream-chat-react-native - yarn - cd stream-chat-react-native/native-package - yarn - cd stream-chat-react-native/examples/TypeScriptMessaging - yarn - ``` - -5. - For iOS - - ```bash - cd ios && pod install && cd .. - yarn ios - ``` - - - For android - - ```bash - yarn android - ``` - - If you run into following error on android: - - ```bash - Execution failed for task ':app:validateSigningDebug'. - > Keystore file '/path_to_project/stream-chat-react-native/examples/NativeMessaging/android/app/debug.keystore' not found for signing config 'debug'. - ``` - - You can generate the debug Keystore by running this command in the `android/app/` directory: `keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000` - [Reference](https://github.com/facebook/react-native/issues/25629#issuecomment-511209583) diff --git a/examples/NativeMessaging/__tests__/App-test.js b/examples/NativeMessaging/__tests__/App-test.js deleted file mode 100644 index 178476699b..0000000000 --- a/examples/NativeMessaging/__tests__/App-test.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * @format - */ - -import 'react-native'; -import React from 'react'; -import App from '../App'; - -// Note: test renderer must be required after react-native. -import renderer from 'react-test-renderer'; - -it('renders correctly', () => { - renderer.create(); -}); diff --git a/examples/NativeMessaging/_editorconfig b/examples/NativeMessaging/_editorconfig deleted file mode 100644 index 52e7e9418c..0000000000 --- a/examples/NativeMessaging/_editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -# Windows files -[*.bat] -end_of_line = crlf \ No newline at end of file diff --git a/examples/NativeMessaging/android/app/_BUCK b/examples/NativeMessaging/android/app/_BUCK deleted file mode 100644 index 3205d0fe88..0000000000 --- a/examples/NativeMessaging/android/app/_BUCK +++ /dev/null @@ -1,55 +0,0 @@ -# To learn about Buck see [Docs](https://buckbuild.com/). -# To run your application with Buck: -# - install Buck -# - `npm start` - to start the packager -# - `cd android` -# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` -# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck -# - `buck install -r android/app` - compile, install and run application -# - -load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") - -lib_deps = [] - -create_aar_targets(glob(["libs/*.aar"])) - -create_jar_targets(glob(["libs/*.jar"])) - -android_library( - name = "all-libs", - exported_deps = lib_deps, -) - -android_library( - name = "app-code", - srcs = glob([ - "src/main/java/**/*.java", - ]), - deps = [ - ":all-libs", - ":build_config", - ":res", - ], -) - -android_build_config( - name = "build_config", - package = "com.nativemessaging", -) - -android_resource( - name = "res", - package = "com.nativemessaging", - res = "src/main/res", -) - -android_binary( - name = "app", - keystore = "//android/keystores:debug", - manifest = "src/main/AndroidManifest.xml", - package_type = "debug", - deps = [ - ":app-code", - ], -) diff --git a/examples/NativeMessaging/android/app/build.gradle b/examples/NativeMessaging/android/app/build.gradle deleted file mode 100644 index fee620a962..0000000000 --- a/examples/NativeMessaging/android/app/build.gradle +++ /dev/null @@ -1,223 +0,0 @@ -apply plugin: "com.android.application" - -import com.android.build.OutputFile - -/** - * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets - * and bundleReleaseJsAndAssets). - * These basically call `react-native bundle` with the correct arguments during the Android build - * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the - * bundle directly from the development server. Below you can see all the possible configurations - * and their defaults. If you decide to add a configuration block, make sure to add it before the - * `apply from: "../../node_modules/react-native/react.gradle"` line. - * - * project.ext.react = [ - * // the name of the generated asset file containing your JS bundle - * bundleAssetName: "index.android.bundle", - * - * // the entry file for bundle generation. If none specified and - * // "index.android.js" exists, it will be used. Otherwise "index.js" is - * // default. Can be overridden with ENTRY_FILE environment variable. - * entryFile: "index.android.js", - * - * // https://reactnative.dev/docs/performance#enable-the-ram-format - * bundleCommand: "ram-bundle", - * - * // whether to bundle JS and assets in debug mode - * bundleInDebug: false, - * - * // whether to bundle JS and assets in release mode - * bundleInRelease: true, - * - * // whether to bundle JS and assets in another build variant (if configured). - * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants - * // The configuration property can be in the following formats - * // 'bundleIn${productFlavor}${buildType}' - * // 'bundleIn${buildType}' - * // bundleInFreeDebug: true, - * // bundleInPaidRelease: true, - * // bundleInBeta: true, - * - * // whether to disable dev mode in custom build variants (by default only disabled in release) - * // for example: to disable dev mode in the staging build type (if configured) - * devDisabledInStaging: true, - * // The configuration property can be in the following formats - * // 'devDisabledIn${productFlavor}${buildType}' - * // 'devDisabledIn${buildType}' - * - * // the root of your project, i.e. where "package.json" lives - * root: "../../", - * - * // where to put the JS bundle asset in debug mode - * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", - * - * // where to put the JS bundle asset in release mode - * jsBundleDirRelease: "$buildDir/intermediates/assets/release", - * - * // where to put drawable resources / React Native assets, e.g. the ones you use via - * // require('./image.png')), in debug mode - * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", - * - * // where to put drawable resources / React Native assets, e.g. the ones you use via - * // require('./image.png')), in release mode - * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", - * - * // by default the gradle tasks are skipped if none of the JS files or assets change; this means - * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to - * // date; if you have any other folders that you want to ignore for performance reasons (gradle - * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ - * // for example, you might want to remove it from here. - * inputExcludes: ["android/**", "ios/**"], - * - * // override which node gets called and with what additional arguments - * nodeExecutableAndArgs: ["node"], - * - * // supply additional arguments to the packager - * extraPackagerArgs: [] - * ] - */ - -project.ext.react = [ - enableHermes: true, // clean and rebuild if changing - entryFile: "index.js", - bundleAssetName: "index.android.bundle", - bundleInRelease: true -] - -apply from: "../../node_modules/react-native/react.gradle" - -/** - * Set this to true to create two separate APKs instead of one: - * - An APK that only works on ARM devices - * - An APK that only works on x86 devices - * The advantage is the size of the APK is reduced by about 4MB. - * Upload all the APKs to the Play Store and people will download - * the correct one based on the CPU architecture of their device. - */ -def enableSeparateBuildPerCPUArchitecture = false - -/** - * Run Proguard to shrink the Java bytecode in release builds. - */ -def enableProguardInReleaseBuilds = false - -/** - * The preferred build flavor of JavaScriptCore. - * - * For example, to use the international variant, you can use: - * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` - * - * The international variant includes ICU i18n library and necessary data - * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that - * give correct results when using with locales other than en-US. Note that - * this variant is about 6MiB larger per architecture than default. - */ -def jscFlavor = 'org.webkit:android-jsc:+' - -/** - * Whether to enable the Hermes VM. - * - * This should be set on project.ext.react and mirrored here. If it is not set - * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode - * and the benefits of using Hermes will therefore be sharply reduced. - */ -def enableHermes = project.ext.react.get("enableHermes", false); - -android { - ndkVersion rootProject.ext.ndkVersion - - compileSdkVersion rootProject.ext.compileSdkVersion - - defaultConfig { - applicationId "com.nativemessaging" - minSdkVersion rootProject.ext.minSdkVersion - targetSdkVersion rootProject.ext.targetSdkVersion - multiDexEnabled true - vectorDrawables.useSupportLibrary true - versionCode 1 - versionName "1.0" - testBuildType System.getProperty('testBuildType', 'debug') // This will later be used to control the test apk build type - testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' - } - splits { - abi { - reset() - enable enableSeparateBuildPerCPUArchitecture - universalApk false // If true, also generate a universal APK - include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" - } - } - signingConfigs { - debug { - storeFile file('debug.keystore') - storePassword 'android' - keyAlias 'androiddebugkey' - keyPassword 'android' - } - } - buildTypes { - debug { - signingConfig signingConfigs.debug - } - release { - // Caution! In production, you need to generate your own keystore file. - // see https://reactnative.dev/docs/signed-apk-android. - signingConfig signingConfigs.debug - minifyEnabled enableProguardInReleaseBuilds - proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" - } - } - - // applicationVariants are e.g. debug, release - applicationVariants.all { variant -> - variant.outputs.each { output -> - // For each separate APK per architecture, set a unique version code as described here: - // https://developer.android.com/studio/build/configure-apk-splits.html - // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. - def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] - def abi = output.getFilter(OutputFile.ABI) - if (abi != null) { // null for the universal-debug, universal-release variants - output.versionCodeOverride = - defaultConfig.versionCode * 1000 + versionCodes.get(abi) - } - - } - } -} - -dependencies { - implementation fileTree(dir: "libs", include: ["*.jar"]) - //noinspection GradleDynamicVersion - implementation "com.facebook.react:react-native:+" // From node_modules - - implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' - debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { - exclude group:'com.facebook.fbjni' - } - debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { - exclude group:'com.facebook.flipper' - exclude group:'com.squareup.okhttp3', module:'okhttp' - } - debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { - exclude group:'com.facebook.flipper' - } - - androidTestImplementation('com.wix:detox:+') - - if (enableHermes) { - def hermesPath = "../../node_modules/hermes-engine/android/"; - debugImplementation files(hermesPath + "hermes-debug.aar") - releaseImplementation files(hermesPath + "hermes-release.aar") - } else { - implementation jscFlavor - } -} - -// Run this once to be able to run the application with BUCK -// puts all compile dependencies into folder libs for BUCK to use -task copyDownloadableDepsToLibs(type: Copy) { - from configurations.implementation - into 'libs' -} - -apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) diff --git a/examples/NativeMessaging/android/app/build_defs.bzl b/examples/NativeMessaging/android/app/build_defs.bzl deleted file mode 100644 index fff270f8d1..0000000000 --- a/examples/NativeMessaging/android/app/build_defs.bzl +++ /dev/null @@ -1,19 +0,0 @@ -"""Helper definitions to glob .aar and .jar targets""" - -def create_aar_targets(aarfiles): - for aarfile in aarfiles: - name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] - lib_deps.append(":" + name) - android_prebuilt_aar( - name = name, - aar = aarfile, - ) - -def create_jar_targets(jarfiles): - for jarfile in jarfiles: - name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] - lib_deps.append(":" + name) - prebuilt_jar( - name = name, - binary_jar = jarfile, - ) diff --git a/examples/NativeMessaging/android/app/proguard-rules.pro b/examples/NativeMessaging/android/app/proguard-rules.pro deleted file mode 100644 index d45bc468a5..0000000000 --- a/examples/NativeMessaging/android/app/proguard-rules.pro +++ /dev/null @@ -1,66 +0,0 @@ -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the proguardFiles -# directive in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# React Native - -# Keep our interfaces so they can be used by other ProGuard rules. -# See http://sourceforge.net/p/proguard/bugs/466/ --keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip --keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters --keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip --keep,allowobfuscation @interface com.facebook.jni.annotations.DoNotStrip - -# Do not strip any method/class that is annotated with @DoNotStrip --keep @com.facebook.proguard.annotations.DoNotStrip class * --keep @com.facebook.common.internal.DoNotStrip class * --keep @com.facebook.jni.annotations.DoNotStrip class * --keepclassmembers class * { - @com.facebook.proguard.annotations.DoNotStrip *; - @com.facebook.common.internal.DoNotStrip *; - @com.facebook.jni.annotations.DoNotStrip *; -} - --keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { - void set*(***); - *** get*(); -} - --keep class * implements com.facebook.react.bridge.JavaScriptModule { *; } --keep class * implements com.facebook.react.bridge.NativeModule { *; } --keepclassmembers,includedescriptorclasses class * { native ; } --keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } --keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } - --dontwarn com.facebook.react.** --keep,includedescriptorclasses class com.facebook.react.bridge.** { *; } - -# okhttp --keepattributes Signature --keepattributes *Annotation* --keep class okhttp3.** { *; } --keep interface okhttp3.** { *; } --dontwarn okhttp3.** - -# okio --keep class sun.misc.Unsafe { *; } --dontwarn java.nio.file.* --dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement --dontwarn okio.** - -# React Native SVG --keep public class com.horcrux.svg.** {*;} - -# hermes --keep class com.facebook.hermes.unicode.** { *; } --keep class com.facebook.jni.** { *; } - -# React Native Reanimated --keep class com.facebook.react.turbomodule.** { *; } \ No newline at end of file diff --git a/examples/NativeMessaging/android/app/src/androidTest/java/com/nativemessaging/DetoxTest.java b/examples/NativeMessaging/android/app/src/androidTest/java/com/nativemessaging/DetoxTest.java deleted file mode 100644 index 52d2c21d51..0000000000 --- a/examples/NativeMessaging/android/app/src/androidTest/java/com/nativemessaging/DetoxTest.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.nativemessaging; - -import com.wix.detox.Detox; -import com.wix.detox.config.DetoxConfig; - -import org.junit.Rule; -import org.junit.Test; -import org.junit.runner.RunWith; - -import androidx.test.ext.junit.runners.AndroidJUnit4; -import androidx.test.filters.LargeTest; -import androidx.test.rule.ActivityTestRule; - -@RunWith(AndroidJUnit4.class) -@LargeTest -public class DetoxTest { - // Replace 'MainActivity' with the value of android:name entry in - // in AndroidManifest.xml - @Rule - public ActivityTestRule mActivityRule = new ActivityTestRule<>(MainActivity.class, false, false); - - @Test - public void runDetoxTests() { - DetoxConfig detoxConfig = new DetoxConfig(); - detoxConfig.idlePolicyConfig.masterTimeoutSec = 90; - detoxConfig.idlePolicyConfig.idleResourceTimeoutSec = 60; - detoxConfig.rnContextLoadTimeoutSec = (com.nativemessaging.BuildConfig.DEBUG ? 180 : 60); - - Detox.runTests(mActivityRule, detoxConfig); - } -} \ No newline at end of file diff --git a/examples/NativeMessaging/android/app/src/debug/AndroidManifest.xml b/examples/NativeMessaging/android/app/src/debug/AndroidManifest.xml deleted file mode 100644 index b2f3ad9fce..0000000000 --- a/examples/NativeMessaging/android/app/src/debug/AndroidManifest.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/examples/NativeMessaging/android/app/src/debug/java/com/nativemessaging/ReactNativeFlipper.java b/examples/NativeMessaging/android/app/src/debug/java/com/nativemessaging/ReactNativeFlipper.java deleted file mode 100644 index d05f3f56f2..0000000000 --- a/examples/NativeMessaging/android/app/src/debug/java/com/nativemessaging/ReactNativeFlipper.java +++ /dev/null @@ -1,72 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. - * - *

This source code is licensed under the MIT license found in the LICENSE file in the root - * directory of this source tree. - */ -package com.nativemessaging; - -import android.content.Context; -import com.facebook.flipper.android.AndroidFlipperClient; -import com.facebook.flipper.android.utils.FlipperUtils; -import com.facebook.flipper.core.FlipperClient; -import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; -import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; -import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; -import com.facebook.flipper.plugins.inspector.DescriptorMapping; -import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; -import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; -import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; -import com.facebook.flipper.plugins.react.ReactFlipperPlugin; -import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; -import com.facebook.react.ReactInstanceManager; -import com.facebook.react.bridge.ReactContext; -import com.facebook.react.modules.network.NetworkingModule; -import okhttp3.OkHttpClient; - -public class ReactNativeFlipper { - public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { - if (FlipperUtils.shouldEnableFlipper(context)) { - final FlipperClient client = AndroidFlipperClient.getInstance(context); - - client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); - client.addPlugin(new ReactFlipperPlugin()); - client.addPlugin(new DatabasesFlipperPlugin(context)); - client.addPlugin(new SharedPreferencesFlipperPlugin(context)); - client.addPlugin(CrashReporterPlugin.getInstance()); - - NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); - NetworkingModule.setCustomClientBuilder( - new NetworkingModule.CustomClientBuilder() { - @Override - public void apply(OkHttpClient.Builder builder) { - builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); - } - }); - client.addPlugin(networkFlipperPlugin); - client.start(); - - // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized - // Hence we run if after all native modules have been initialized - ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); - if (reactContext == null) { - reactInstanceManager.addReactInstanceEventListener( - new ReactInstanceManager.ReactInstanceEventListener() { - @Override - public void onReactContextInitialized(ReactContext reactContext) { - reactInstanceManager.removeReactInstanceEventListener(this); - reactContext.runOnNativeModulesQueueThread( - new Runnable() { - @Override - public void run() { - client.addPlugin(new FrescoFlipperPlugin()); - } - }); - } - }); - } else { - client.addPlugin(new FrescoFlipperPlugin()); - } - } - } -} \ No newline at end of file diff --git a/examples/NativeMessaging/android/app/src/main/AndroidManifest.xml b/examples/NativeMessaging/android/app/src/main/AndroidManifest.xml deleted file mode 100644 index b60edc3bdd..0000000000 --- a/examples/NativeMessaging/android/app/src/main/AndroidManifest.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainActivity.java b/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainActivity.java deleted file mode 100644 index 710369a76d..0000000000 --- a/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainActivity.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.nativemessaging; - -import com.facebook.react.ReactActivity; -import com.facebook.react.ReactActivityDelegate; -import com.facebook.react.ReactRootView; -import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView; - -public class MainActivity extends ReactActivity { - - /** - * Returns the name of the main component registered from JavaScript. This is used to schedule - * rendering of the component. - */ - @Override - protected String getMainComponentName() { - return "NativeMessaging"; - } - - @Override - protected ReactActivityDelegate createReactActivityDelegate() { - return new ReactActivityDelegate(this, getMainComponentName()) { - @Override - protected ReactRootView createRootView() { - return new RNGestureHandlerEnabledRootView(MainActivity.this); - } - }; - } -} diff --git a/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainApplication.java b/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainApplication.java deleted file mode 100644 index 8fd7c9c5b7..0000000000 --- a/examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainApplication.java +++ /dev/null @@ -1,88 +0,0 @@ -package com.nativemessaging; - -import android.app.Application; - -import android.content.Context; -import com.facebook.react.bridge.JSIModulePackage; -import com.facebook.react.PackageList; -import com.facebook.react.ReactApplication; -import com.facebook.react.ReactInstanceManager; -import com.facebook.react.ReactNativeHost; -import com.facebook.react.ReactPackage; -import com.facebook.soloader.SoLoader; -import com.swmansion.reanimated.ReanimatedJSIModulePackage; -import java.lang.reflect.InvocationTargetException; -import java.util.List; - -public class MainApplication extends Application implements ReactApplication { - - private final ReactNativeHost mReactNativeHost = - new ReactNativeHost(this) { - @Override - public boolean getUseDeveloperSupport() { - return BuildConfig.DEBUG; - } - - @Override - protected List getPackages() { - @SuppressWarnings("UnnecessaryLocalVariable") - List packages = new PackageList(this).getPackages(); - // Packages that cannot be autolinked yet can be added manually here, for example: - // packages.add(new MyReactNativePackage()); - return packages; - } - - @Override - protected String getJSMainModuleName() { - return "index"; - } - - @Override - protected JSIModulePackage getJSIModulePackage() { - return new ReanimatedJSIModulePackage(); - } - }; - - @Override - public ReactNativeHost getReactNativeHost() { - return mReactNativeHost; - } - - @Override - public void onCreate() { - super.onCreate(); - SoLoader.init(this, /* native exopackage */ false); - initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); - } - - /** - * Loads Flipper in React Native templates. Call this in the onCreate method with something like - * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); - * - * @param context - * @param reactInstanceManager - */ - private static void initializeFlipper( - Context context, ReactInstanceManager reactInstanceManager) { - if (BuildConfig.DEBUG) { - try { - /* - We use reflection here to pick up the class that initializes Flipper, - since Flipper library is not available in release mode - */ - Class aClass = Class.forName("com.rndiffapp.ReactNativeFlipper"); - aClass - .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) - .invoke(null, context, reactInstanceManager); - } catch (ClassNotFoundException e) { - e.printStackTrace(); - } catch (NoSuchMethodException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.printStackTrace(); - } - } - } -} diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher.png deleted file mode 100644 index a2f5908281..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png deleted file mode 100644 index 1b52399808..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher.png deleted file mode 100644 index ff10afd6e1..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png deleted file mode 100644 index 115a4c768a..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png deleted file mode 100644 index dcd3cd8083..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png deleted file mode 100644 index 459ca609d3..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png deleted file mode 100644 index 8ca12fe024..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png deleted file mode 100644 index 8e19b410a1..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png deleted file mode 100644 index b824ebdd48..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png deleted file mode 100644 index 4c19a13c23..0000000000 Binary files a/examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ diff --git a/examples/NativeMessaging/android/app/src/main/res/values/strings.xml b/examples/NativeMessaging/android/app/src/main/res/values/strings.xml deleted file mode 100644 index a8322dd800..0000000000 --- a/examples/NativeMessaging/android/app/src/main/res/values/strings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - NativeMessaging - diff --git a/examples/NativeMessaging/android/app/src/main/res/values/styles.xml b/examples/NativeMessaging/android/app/src/main/res/values/styles.xml deleted file mode 100644 index 9fab0be743..0000000000 --- a/examples/NativeMessaging/android/app/src/main/res/values/styles.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/examples/NativeMessaging/android/app/src/main/res/xml/network_security_config.xml b/examples/NativeMessaging/android/app/src/main/res/xml/network_security_config.xml deleted file mode 100644 index c7755e76fa..0000000000 --- a/examples/NativeMessaging/android/app/src/main/res/xml/network_security_config.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - 10.0.2.2 - localhost - - \ No newline at end of file diff --git a/examples/NativeMessaging/android/build.gradle b/examples/NativeMessaging/android/build.gradle deleted file mode 100644 index b05d8ac755..0000000000 --- a/examples/NativeMessaging/android/build.gradle +++ /dev/null @@ -1,47 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - -buildscript { - ext { - buildToolsVersion = "30.0.3" - minSdkVersion = 21 - compileSdkVersion = 30 - targetSdkVersion = 30 - androidXCore = "1.0.2" - ndkVersion = "20.1.5948944" - kotlinVersion = '1.3.10' - // Put here other AndroidX dependencies - } - repositories { - google() - mavenCentral() - } - dependencies { - classpath('com.android.tools.build:gradle:4.2.1') - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" - - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files - } -} - -allprojects { - repositories { - mavenCentral() - mavenLocal() - maven { - // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm - url("$rootDir/../node_modules/react-native/android") - } - maven { - // Android JSC is installed from npm - url("$rootDir/../node_modules/jsc-android/dist") - } - - google() - maven { url 'https://maven.google.com' } - maven { url 'https://www.jitpack.io' } - maven { - url "$rootDir/../../../node_modules/detox/Detox-android" - } - } -} diff --git a/examples/NativeMessaging/android/gradle.properties b/examples/NativeMessaging/android/gradle.properties deleted file mode 100644 index fae5bce5e4..0000000000 --- a/examples/NativeMessaging/android/gradle.properties +++ /dev/null @@ -1,29 +0,0 @@ -# Project-wide Gradle settings. - -# IDE (e.g. Android Studio) users: -# Gradle settings configured through the IDE *will override* -# any settings specified in this file. - -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html - -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -# Default value: -Xmx10248m -XX:MaxPermSize=256m -# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=10214m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 - -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true - -# AndroidX package structure to make it clearer which packages are bundled with the -# Android operating system, and which are packaged with your app's APK -# https://developer.android.com/topic/libraries/support-library/androidx-rn -android.useAndroidX=true -# Automatically convert third-party libraries to use AndroidX -android.enableJetifier=true - -# Version of flipper SDK to use with React Native -FLIPPER_VERSION=0.93.0 diff --git a/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.jar b/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e708b1c023..0000000000 Binary files a/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.properties b/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index f0af4309d4..0000000000 --- a/examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,6 +0,0 @@ -#Mon Oct 19 12:17:38 EDT 2020 -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip diff --git a/examples/NativeMessaging/android/gradlew b/examples/NativeMessaging/android/gradlew deleted file mode 100755 index 3a163de711..0000000000 --- a/examples/NativeMessaging/android/gradlew +++ /dev/null @@ -1,185 +0,0 @@ -#!/usr/bin/env sh - -# -# Copyright 2015 the original author or authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -## -## Gradle start up script for UN*X -## -############################################################################## - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null - -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" - -warn () { - echo "$*" -} - -die () { - echo - echo "$*" - echo - exit 1 -} - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD="java" - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." -fi - -# Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi -fi - -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi - -# For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi - # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" - fi - i=`expr $i + 1` - done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac -fi - -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` - -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" - -exec "$JAVACMD" "$@" \ No newline at end of file diff --git a/examples/NativeMessaging/android/gradlew.bat b/examples/NativeMessaging/android/gradlew.bat deleted file mode 100644 index 477c896641..0000000000 --- a/examples/NativeMessaging/android/gradlew.bat +++ /dev/null @@ -1,89 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%" == "" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute - -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega \ No newline at end of file diff --git a/examples/NativeMessaging/android/settings.gradle b/examples/NativeMessaging/android/settings.gradle deleted file mode 100644 index 836c3e7724..0000000000 --- a/examples/NativeMessaging/android/settings.gradle +++ /dev/null @@ -1,3 +0,0 @@ -rootProject.name = 'NativeMessaging' -apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) -include ':app' diff --git a/examples/NativeMessaging/app.json b/examples/NativeMessaging/app.json deleted file mode 100644 index 5b1e3b5ca3..0000000000 --- a/examples/NativeMessaging/app.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "NativeMessaging", - "displayName": "NativeMessaging", - "scheme": "nativemessaging://" -} diff --git a/examples/NativeMessaging/babel.config.js b/examples/NativeMessaging/babel.config.js deleted file mode 100644 index 5d3a7d1b28..0000000000 --- a/examples/NativeMessaging/babel.config.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - plugins: ['react-native-reanimated/plugin'], - presets: ['module:metro-react-native-babel-preset'], -}; diff --git a/examples/NativeMessaging/index.js b/examples/NativeMessaging/index.js deleted file mode 100644 index d2660dcb40..0000000000 --- a/examples/NativeMessaging/index.js +++ /dev/null @@ -1,7 +0,0 @@ -import 'react-native-gesture-handler'; -import { AppRegistry } from 'react-native'; - -import App from './App'; -import { name as appName } from './app.json'; - -AppRegistry.registerComponent(appName, () => App); diff --git a/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/project.pbxproj b/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/project.pbxproj deleted file mode 100644 index 3cf93cf076..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/project.pbxproj +++ /dev/null @@ -1,689 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 00E356F31AD99517003FC87E /* NativeMessagingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NativeMessagingTests.m */; }; - 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; - 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; - 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; - D88327271572A617F6C32043 /* libPods-NativeMessaging.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8A26A11B53186BCB099C415 /* libPods-NativeMessaging.a */; }; - E42C49F10E70E4947F7255EB /* libPods-NativeMessaging-NativeMessagingTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 86644991FDE022BD5A78E8DE /* libPods-NativeMessaging-NativeMessagingTests.a */; }; - F5427C9C24C20AF200B248F1 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5427C9B24C20AF200B248F1 /* LaunchScreen.storyboard */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 13B07F861A680F5B00A75B9A; - remoteInfo = NativeMessaging; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 00E356EE1AD99517003FC87E /* NativeMessagingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NativeMessagingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 00E356F21AD99517003FC87E /* NativeMessagingTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NativeMessagingTests.m; sourceTree = ""; }; - 0C7D8C9E9E1215565D964877 /* Pods-NativeMessaging-NativeMessagingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NativeMessaging-NativeMessagingTests.debug.xcconfig"; path = "Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests.debug.xcconfig"; sourceTree = ""; }; - 13B07F961A680F5B00A75B9A /* NativeMessaging.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NativeMessaging.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = NativeMessaging/AppDelegate.h; sourceTree = ""; }; - 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = NativeMessaging/AppDelegate.m; sourceTree = ""; }; - 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = NativeMessaging/Images.xcassets; sourceTree = ""; }; - 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = NativeMessaging/Info.plist; sourceTree = ""; }; - 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = NativeMessaging/main.m; sourceTree = ""; }; - 86644991FDE022BD5A78E8DE /* libPods-NativeMessaging-NativeMessagingTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NativeMessaging-NativeMessagingTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C04E69402BC1AFE5ECE4BD38 /* Pods-NativeMessaging-NativeMessagingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NativeMessaging-NativeMessagingTests.release.xcconfig"; path = "Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests.release.xcconfig"; sourceTree = ""; }; - E6929BA19E7EECBC13A01BA6 /* Pods-NativeMessaging.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NativeMessaging.release.xcconfig"; path = "Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging.release.xcconfig"; sourceTree = ""; }; - ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; - F5427C9B24C20AF200B248F1 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = NativeMessaging/LaunchScreen.storyboard; sourceTree = ""; }; - F5B74970B08AA2D9410BB1F2 /* Pods-NativeMessaging.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NativeMessaging.debug.xcconfig"; path = "Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging.debug.xcconfig"; sourceTree = ""; }; - F8A26A11B53186BCB099C415 /* libPods-NativeMessaging.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-NativeMessaging.a"; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 00E356EB1AD99517003FC87E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - E42C49F10E70E4947F7255EB /* libPods-NativeMessaging-NativeMessagingTests.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D88327271572A617F6C32043 /* libPods-NativeMessaging.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 00E356EF1AD99517003FC87E /* NativeMessagingTests */ = { - isa = PBXGroup; - children = ( - 00E356F21AD99517003FC87E /* NativeMessagingTests.m */, - 00E356F01AD99517003FC87E /* Supporting Files */, - ); - path = NativeMessagingTests; - sourceTree = ""; - }; - 00E356F01AD99517003FC87E /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 00E356F11AD99517003FC87E /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 13B07FAE1A68108700A75B9A /* NativeMessaging */ = { - isa = PBXGroup; - children = ( - 13B07FAF1A68108700A75B9A /* AppDelegate.h */, - 13B07FB01A68108700A75B9A /* AppDelegate.m */, - 13B07FB51A68108700A75B9A /* Images.xcassets */, - 13B07FB61A68108700A75B9A /* Info.plist */, - F5427C9B24C20AF200B248F1 /* LaunchScreen.storyboard */, - 13B07FB71A68108700A75B9A /* main.m */, - ); - name = NativeMessaging; - sourceTree = ""; - }; - 284CF93F30F27322DBDE9632 /* Pods */ = { - isa = PBXGroup; - children = ( - F5B74970B08AA2D9410BB1F2 /* Pods-NativeMessaging.debug.xcconfig */, - E6929BA19E7EECBC13A01BA6 /* Pods-NativeMessaging.release.xcconfig */, - 0C7D8C9E9E1215565D964877 /* Pods-NativeMessaging-NativeMessagingTests.debug.xcconfig */, - C04E69402BC1AFE5ECE4BD38 /* Pods-NativeMessaging-NativeMessagingTests.release.xcconfig */, - ); - path = Pods; - sourceTree = ""; - }; - 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { - isa = PBXGroup; - children = ( - ED297162215061F000B7C4FE /* JavaScriptCore.framework */, - F8A26A11B53186BCB099C415 /* libPods-NativeMessaging.a */, - 86644991FDE022BD5A78E8DE /* libPods-NativeMessaging-NativeMessagingTests.a */, - ); - name = Frameworks; - sourceTree = ""; - }; - 832341AE1AAA6A7D00B99B32 /* Libraries */ = { - isa = PBXGroup; - children = ( - ); - name = Libraries; - sourceTree = ""; - }; - 83CBB9F61A601CBA00E9B192 = { - isa = PBXGroup; - children = ( - 13B07FAE1A68108700A75B9A /* NativeMessaging */, - 832341AE1AAA6A7D00B99B32 /* Libraries */, - 00E356EF1AD99517003FC87E /* NativeMessagingTests */, - 83CBBA001A601CBA00E9B192 /* Products */, - 2D16E6871FA4F8E400B85C8A /* Frameworks */, - 284CF93F30F27322DBDE9632 /* Pods */, - ); - indentWidth = 2; - sourceTree = ""; - tabWidth = 2; - usesTabs = 0; - }; - 83CBBA001A601CBA00E9B192 /* Products */ = { - isa = PBXGroup; - children = ( - 13B07F961A680F5B00A75B9A /* NativeMessaging.app */, - 00E356EE1AD99517003FC87E /* NativeMessagingTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 00E356ED1AD99517003FC87E /* NativeMessagingTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "NativeMessagingTests" */; - buildPhases = ( - 798C6C43C10A81C9A6559D62 /* [CP] Check Pods Manifest.lock */, - 00E356EA1AD99517003FC87E /* Sources */, - 00E356EB1AD99517003FC87E /* Frameworks */, - 00E356EC1AD99517003FC87E /* Resources */, - 751205474B677F32B717FB03 /* [CP] Embed Pods Frameworks */, - 7001BC233EDBDBB614E6F0F6 /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - 00E356F51AD99517003FC87E /* PBXTargetDependency */, - ); - name = NativeMessagingTests; - productName = NativeMessagingTests; - productReference = 00E356EE1AD99517003FC87E /* NativeMessagingTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 13B07F861A680F5B00A75B9A /* NativeMessaging */ = { - isa = PBXNativeTarget; - buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NativeMessaging" */; - buildPhases = ( - 7F94052B726945CCF5938531 /* [CP] Check Pods Manifest.lock */, - FD10A7F022414F080027D42C /* Start Packager */, - 13B07F871A680F5B00A75B9A /* Sources */, - 13B07F8C1A680F5B00A75B9A /* Frameworks */, - 13B07F8E1A680F5B00A75B9A /* Resources */, - 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, - 424A5460ACA9C8B1C0494828 /* [CP] Embed Pods Frameworks */, - 50D576F9477E8AF8E3FEE7D7 /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = NativeMessaging; - productName = NativeMessaging; - productReference = 13B07F961A680F5B00A75B9A /* NativeMessaging.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 83CBB9F71A601CBA00E9B192 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 1210; - TargetAttributes = { - 00E356ED1AD99517003FC87E = { - CreatedOnToolsVersion = 6.2; - TestTargetID = 13B07F861A680F5B00A75B9A; - }; - 13B07F861A680F5B00A75B9A = { - LastSwiftMigration = 1160; - }; - }; - }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NativeMessaging" */; - compatibilityVersion = "Xcode 12.0"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 83CBB9F61A601CBA00E9B192; - productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 13B07F861A680F5B00A75B9A /* NativeMessaging */, - 00E356ED1AD99517003FC87E /* NativeMessagingTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 00E356EC1AD99517003FC87E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 13B07F8E1A680F5B00A75B9A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F5427C9C24C20AF200B248F1 /* LaunchScreen.storyboard in Resources */, - 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Bundle React Native code and images"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; - }; - 424A5460ACA9C8B1C0494828 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 50D576F9477E8AF8E3FEE7D7 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NativeMessaging/Pods-NativeMessaging-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 7001BC233EDBDBB614E6F0F6 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-resources-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Copy Pods Resources"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-resources-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 751205474B677F32B717FB03 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NativeMessaging-NativeMessagingTests/Pods-NativeMessaging-NativeMessagingTests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 798C6C43C10A81C9A6559D62 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-NativeMessaging-NativeMessagingTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - 7F94052B726945CCF5938531 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-NativeMessaging-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - FD10A7F022414F080027D42C /* Start Packager */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - ); - name = "Start Packager"; - outputFileListPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 00E356EA1AD99517003FC87E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 00E356F31AD99517003FC87E /* NativeMessagingTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 13B07F871A680F5B00A75B9A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, - 13B07FC11A68108700A75B9A /* main.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 13B07F861A680F5B00A75B9A /* NativeMessaging */; - targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 00E356F61AD99517003FC87E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0C7D8C9E9E1215565D964877 /* Pods-NativeMessaging-NativeMessagingTests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = NativeMessagingTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - "$(inherited)", - ); - PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NativeMessaging.app/NativeMessaging"; - }; - name = Debug; - }; - 00E356F71AD99517003FC87E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C04E69402BC1AFE5ECE4BD38 /* Pods-NativeMessaging-NativeMessagingTests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - COPY_PHASE_STRIP = NO; - INFOPLIST_FILE = NativeMessagingTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - "$(inherited)", - ); - PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NativeMessaging.app/NativeMessaging"; - }; - name = Release; - }; - 13B07F941A680F5B00A75B9A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F5B74970B08AA2D9410BB1F2 /* Pods-NativeMessaging.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = 1; - DEAD_CODE_STRIPPING = YES; - INFOPLIST_FILE = NativeMessaging/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - "-lc++", - ); - PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = NativeMessaging; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Debug; - }; - 13B07F951A680F5B00A75B9A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E6929BA19E7EECBC13A01BA6 /* Pods-NativeMessaging.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - CURRENT_PROJECT_VERSION = 1; - DEAD_CODE_STRIPPING = YES; - INFOPLIST_FILE = NativeMessaging/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - "-lc++", - ); - PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = NativeMessaging; - SWIFT_VERSION = 5.0; - VERSIONING_SYSTEM = "apple-generic"; - }; - name = Release; - }; - 83CBBA201A601CBA00E9B192 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - /usr/lib/swift, - "$(inherited)", - ); - LIBRARY_SEARCH_PATHS = ( - "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", - "\"$(inherited)\"", - ); - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - }; - name = Debug; - }; - 83CBBA211A601CBA00E9B192 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - /usr/lib/swift, - "$(inherited)", - ); - LIBRARY_SEARCH_PATHS = ( - "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", - "\"$(inherited)\"", - ); - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "NativeMessagingTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 00E356F61AD99517003FC87E /* Debug */, - 00E356F71AD99517003FC87E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "NativeMessaging" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 13B07F941A680F5B00A75B9A /* Debug */, - 13B07F951A680F5B00A75B9A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "NativeMessaging" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 83CBBA201A601CBA00E9B192 /* Debug */, - 83CBBA211A601CBA00E9B192 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; -} diff --git a/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/xcshareddata/xcschemes/NativeMessaging.xcscheme b/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/xcshareddata/xcschemes/NativeMessaging.xcscheme deleted file mode 100644 index 28be98ef55..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging.xcodeproj/xcshareddata/xcschemes/NativeMessaging.xcscheme +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/contents.xcworkspacedata b/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 0cf875f67d..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 9ab4e6b654..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - \ No newline at end of file diff --git a/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.h b/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.h deleted file mode 100644 index ef1de86a2a..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.h +++ /dev/null @@ -1,8 +0,0 @@ -#import -#import - -@interface AppDelegate : UIResponder - -@property (nonatomic, strong) UIWindow *window; - -@end diff --git a/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.m b/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.m deleted file mode 100644 index d520baf9f6..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/AppDelegate.m +++ /dev/null @@ -1,62 +0,0 @@ -#import "AppDelegate.h" - -#import -#import -#import - -#ifdef FB_SONARKIT_ENABLED -#import -#import -#import -#import -#import -#import - -static void InitializeFlipper(UIApplication *application) { - FlipperClient *client = [FlipperClient sharedClient]; - SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; - [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; - [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; - [client addPlugin:[FlipperKitReactPlugin new]]; - [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; - [client start]; -} -#endif - -@implementation AppDelegate - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions -{ -#ifdef FB_SONARKIT_ENABLED -InitializeFlipper(application); -#endif - - RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; - RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge - moduleName:@"NativeMessaging" - initialProperties:nil]; - - if (@available(iOS 13.0, *)) { - rootView.backgroundColor = [UIColor systemBackgroundColor]; - } else { - rootView.backgroundColor = [UIColor whiteColor]; - } - - self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; - UIViewController *rootViewController = [UIViewController new]; - rootViewController.view = rootView; - self.window.rootViewController = rootViewController; - [self.window makeKeyAndVisible]; - return YES; -} - -- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge -{ -#if DEBUG - return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; -#else - return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; -#endif -} - -@end diff --git a/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/AppIcon.appiconset/Contents.json b/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index ddd7fca89e..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "images": [ - { - "idiom": "iphone", - "scale": "2x", - "size": "20x20" - }, - { - "idiom": "iphone", - "scale": "3x", - "size": "20x20" - }, - { - "idiom": "iphone", - "scale": "2x", - "size": "29x29" - }, - { - "idiom": "iphone", - "scale": "3x", - "size": "29x29" - }, - { - "idiom": "iphone", - "scale": "2x", - "size": "40x40" - }, - { - "idiom": "iphone", - "scale": "3x", - "size": "40x40" - }, - { - "idiom": "iphone", - "scale": "2x", - "size": "60x60" - }, - { - "idiom": "iphone", - "scale": "3x", - "size": "60x60" - }, - { - "idiom": "ios-marketing", - "scale": "1x", - "size": "1024x1024" - } - ], - "info": { - "author": "xcode", - "version": 1 - } -} diff --git a/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/Contents.json b/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/Contents.json deleted file mode 100644 index 97a8662ebd..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info": { - "version": 1, - "author": "xcode" - } -} diff --git a/examples/NativeMessaging/ios/NativeMessaging/Info.plist b/examples/NativeMessaging/ios/NativeMessaging/Info.plist deleted file mode 100644 index 9111e53c99..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/Info.plist +++ /dev/null @@ -1,63 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - NativeMessaging - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - LSRequiresIPhoneOS - - NSAppTransportSecurity - - NSExceptionDomains - - localhost - - NSExceptionAllowsInsecureHTTPLoads - - - - - NSLocationWhenInUseUsageDescription - - UILaunchStoryboardName - LaunchScreen - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UIViewControllerBasedStatusBarAppearance - - NSPhotoLibraryUsageDescription - $(PRODUCT_NAME) would like access to your photo gallery - NSCameraUsageDescription - $(PRODUCT_NAME) would like to use your camera - NSPhotoLibraryAddUsageDescription - $(PRODUCT_NAME) would like to save photos to your photo gallery - NSMicrophoneUsageDescription - $(PRODUCT_NAME) would like to use your microphone (for videos) - - diff --git a/examples/NativeMessaging/ios/NativeMessaging/LaunchScreen.storyboard b/examples/NativeMessaging/ios/NativeMessaging/LaunchScreen.storyboard deleted file mode 100644 index 0d26936416..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/LaunchScreen.storyboard +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/examples/NativeMessaging/ios/NativeMessaging/main.m b/examples/NativeMessaging/ios/NativeMessaging/main.m deleted file mode 100644 index b1df44b953..0000000000 --- a/examples/NativeMessaging/ios/NativeMessaging/main.m +++ /dev/null @@ -1,9 +0,0 @@ -#import - -#import "AppDelegate.h" - -int main(int argc, char * argv[]) { - @autoreleasepool { - return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); - } -} diff --git a/examples/NativeMessaging/ios/NativeMessagingTests/Info.plist b/examples/NativeMessaging/ios/NativeMessagingTests/Info.plist deleted file mode 100644 index ba72822e87..0000000000 --- a/examples/NativeMessaging/ios/NativeMessagingTests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/examples/NativeMessaging/ios/NativeMessagingTests/NativeMessagingTests.m b/examples/NativeMessaging/ios/NativeMessagingTests/NativeMessagingTests.m deleted file mode 100644 index 75ac198f4b..0000000000 --- a/examples/NativeMessaging/ios/NativeMessagingTests/NativeMessagingTests.m +++ /dev/null @@ -1,65 +0,0 @@ -#import -#import - -#import -#import - -#define TIMEOUT_SECONDS 600 -#define TEXT_TO_LOOK_FOR @"Welcome to React" - -@interface NativeMessagingTests : XCTestCase - -@end - -@implementation NativeMessagingTests - -- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test -{ - if (test(view)) { - return YES; - } - for (UIView *subview in [view subviews]) { - if ([self findSubviewInView:subview matching:test]) { - return YES; - } - } - return NO; -} - -- (void)testRendersWelcomeScreen -{ - UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; - NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; - BOOL foundElement = NO; - - __block NSString *redboxError = nil; -#ifdef DEBUG - RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { - if (level >= RCTLogLevelError) { - redboxError = message; - } - }); -#endif - - while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { - [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; - [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; - - foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { - if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { - return YES; - } - return NO; - }]; - } - -#ifdef DEBUG - RCTSetLogFunction(RCTDefaultLogFunction); -#endif - - XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); - XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); -} - - -@end \ No newline at end of file diff --git a/examples/NativeMessaging/ios/Podfile b/examples/NativeMessaging/ios/Podfile deleted file mode 100644 index 5106437b6b..0000000000 --- a/examples/NativeMessaging/ios/Podfile +++ /dev/null @@ -1,28 +0,0 @@ -require_relative '../node_modules/react-native/scripts/react_native_pods' -require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' - -platform :ios, '11.0' - -target 'NativeMessaging' do - config = use_native_modules! - - use_react_native!( - :path => config[:reactNativePath], - # to enable hermes on iOS, change `false` to `true` and then install pods - :hermes_enabled => true - ) - - target 'NativeMessagingTests' do - inherit! :complete - # Pods for testing - end - - # Enables Flipper. - # - # Note that if you have use_frameworks! enabled, Flipper will not work and - # you should disable the next line. - use_flipper!() - post_install do |installer| - react_native_post_install(installer) - end -end diff --git a/examples/NativeMessaging/ios/Podfile.lock b/examples/NativeMessaging/ios/Podfile.lock deleted file mode 100644 index e721c02f18..0000000000 --- a/examples/NativeMessaging/ios/Podfile.lock +++ /dev/null @@ -1,663 +0,0 @@ -PODS: - - boost-for-react-native (1.63.0) - - CocoaAsyncSocket (7.6.5) - - DoubleConversion (1.1.6) - - FBLazyVector (0.65.1) - - FBReactNativeSpec (0.65.1): - - RCT-Folly (= 2021.04.26.00) - - RCTRequired (= 0.65.1) - - RCTTypeSafety (= 0.65.1) - - React-Core (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - Flipper (0.93.0): - - Flipper-Folly (~> 2.6) - - Flipper-RSocket (~> 1.4) - - Flipper-Boost-iOSX (1.76.0.1.11) - - Flipper-DoubleConversion (3.1.7) - - Flipper-Fmt (7.1.7) - - Flipper-Folly (2.6.7): - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt (= 7.1.7) - - Flipper-Glog - - libevent (~> 2.1.12) - - OpenSSL-Universal (= 1.1.180) - - Flipper-Glog (0.3.6) - - Flipper-PeerTalk (0.0.4) - - Flipper-RSocket (1.4.3): - - Flipper-Folly (~> 2.6) - - FlipperKit (0.93.0): - - FlipperKit/Core (= 0.93.0) - - FlipperKit/Core (0.93.0): - - Flipper (~> 0.93.0) - - FlipperKit/CppBridge - - FlipperKit/FBCxxFollyDynamicConvert - - FlipperKit/FBDefines - - FlipperKit/FKPortForwarding - - FlipperKit/CppBridge (0.93.0): - - Flipper (~> 0.93.0) - - FlipperKit/FBCxxFollyDynamicConvert (0.93.0): - - Flipper-Folly (~> 2.6) - - FlipperKit/FBDefines (0.93.0) - - FlipperKit/FKPortForwarding (0.93.0): - - CocoaAsyncSocket (~> 7.6) - - Flipper-PeerTalk (~> 0.0.4) - - FlipperKit/FlipperKitHighlightOverlay (0.93.0) - - FlipperKit/FlipperKitLayoutHelpers (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutTextSearchable - - FlipperKit/FlipperKitLayoutIOSDescriptors (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - YogaKit (~> 1.18) - - FlipperKit/FlipperKitLayoutPlugin (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - FlipperKit/FlipperKitLayoutIOSDescriptors - - FlipperKit/FlipperKitLayoutTextSearchable - - YogaKit (~> 1.18) - - FlipperKit/FlipperKitLayoutTextSearchable (0.93.0) - - FlipperKit/FlipperKitNetworkPlugin (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitReactPlugin (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitUserDefaultsPlugin (0.93.0): - - FlipperKit/Core - - FlipperKit/SKIOSNetworkPlugin (0.93.0): - - FlipperKit/Core - - FlipperKit/FlipperKitNetworkPlugin - - fmt (6.2.1) - - glog (0.3.5) - - hermes-engine (0.8.1) - - libevent (2.1.12) - - OpenSSL-Universal (1.1.180) - - RCT-Folly (2021.04.26.00): - - boost-for-react-native - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - RCT-Folly/Default (= 2021.04.26.00) - - RCT-Folly/Default (2021.04.26.00): - - boost-for-react-native - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - RCT-Folly/Futures (2021.04.26.00): - - boost-for-react-native - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - libevent - - RCTRequired (0.65.1) - - RCTTypeSafety (0.65.1): - - FBLazyVector (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTRequired (= 0.65.1) - - React-Core (= 0.65.1) - - React (0.65.1): - - React-Core (= 0.65.1) - - React-Core/DevSupport (= 0.65.1) - - React-Core/RCTWebSocket (= 0.65.1) - - React-RCTActionSheet (= 0.65.1) - - React-RCTAnimation (= 0.65.1) - - React-RCTBlob (= 0.65.1) - - React-RCTImage (= 0.65.1) - - React-RCTLinking (= 0.65.1) - - React-RCTNetwork (= 0.65.1) - - React-RCTSettings (= 0.65.1) - - React-RCTText (= 0.65.1) - - React-RCTVibration (= 0.65.1) - - React-callinvoker (0.65.1) - - React-Core (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default (= 0.65.1) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/CoreModulesHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/Default (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/DevSupport (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default (= 0.65.1) - - React-Core/RCTWebSocket (= 0.65.1) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-jsinspector (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTActionSheetHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTAnimationHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTBlobHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTImageHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTLinkingHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTNetworkHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTSettingsHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTTextHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTVibrationHeaders (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-Core/RCTWebSocket (0.65.1): - - glog - - RCT-Folly (= 2021.04.26.00) - - React-Core/Default (= 0.65.1) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-perflogger (= 0.65.1) - - Yoga - - React-CoreModules (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTTypeSafety (= 0.65.1) - - React-Core/CoreModulesHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - React-RCTImage (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-cxxreact (0.65.1): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - glog - - RCT-Folly (= 2021.04.26.00) - - React-callinvoker (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsinspector (= 0.65.1) - - React-perflogger (= 0.65.1) - - React-runtimeexecutor (= 0.65.1) - - React-hermes (0.65.1): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly (= 2021.04.26.00) - - RCT-Folly/Futures (= 2021.04.26.00) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-jsiexecutor (= 0.65.1) - - React-jsinspector (= 0.65.1) - - React-perflogger (= 0.65.1) - - React-jsi (0.65.1): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - glog - - RCT-Folly (= 2021.04.26.00) - - React-jsi/Default (= 0.65.1) - - React-jsi/Default (0.65.1): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - glog - - RCT-Folly (= 2021.04.26.00) - - React-jsiexecutor (0.65.1): - - DoubleConversion - - glog - - RCT-Folly (= 2021.04.26.00) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-perflogger (= 0.65.1) - - React-jsinspector (0.65.1) - - react-native-cameraroll (4.0.4): - - React-Core - - react-native-document-picker (5.0.4): - - React-Core - - react-native-image-resizer (1.4.4): - - React-Core - - react-native-netinfo (6.0.0): - - React-Core - - react-native-safe-area-context (3.2.0): - - React-Core - - React-perflogger (0.65.1) - - React-RCTActionSheet (0.65.1): - - React-Core/RCTActionSheetHeaders (= 0.65.1) - - React-RCTAnimation (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTTypeSafety (= 0.65.1) - - React-Core/RCTAnimationHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTBlob (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - React-Core/RCTBlobHeaders (= 0.65.1) - - React-Core/RCTWebSocket (= 0.65.1) - - React-jsi (= 0.65.1) - - React-RCTNetwork (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTImage (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTTypeSafety (= 0.65.1) - - React-Core/RCTImageHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - React-RCTNetwork (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTLinking (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - React-Core/RCTLinkingHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTNetwork (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTTypeSafety (= 0.65.1) - - React-Core/RCTNetworkHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTSettings (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - RCTTypeSafety (= 0.65.1) - - React-Core/RCTSettingsHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-RCTText (0.65.1): - - React-Core/RCTTextHeaders (= 0.65.1) - - React-RCTVibration (0.65.1): - - FBReactNativeSpec (= 0.65.1) - - RCT-Folly (= 2021.04.26.00) - - React-Core/RCTVibrationHeaders (= 0.65.1) - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (= 0.65.1) - - React-runtimeexecutor (0.65.1): - - React-jsi (= 0.65.1) - - ReactCommon/turbomodule/core (0.65.1): - - DoubleConversion - - glog - - RCT-Folly (= 2021.04.26.00) - - React-callinvoker (= 0.65.1) - - React-Core (= 0.65.1) - - React-cxxreact (= 0.65.1) - - React-jsi (= 0.65.1) - - React-perflogger (= 0.65.1) - - RNCMaskedView (0.1.11): - - React - - RNFS (2.18.0): - - React - - RNGestureHandler (1.10.3): - - React-Core - - RNImageCropPicker (0.36.2): - - React-Core - - React-RCTImage - - RNImageCropPicker/QBImagePickerController (= 0.36.2) - - TOCropViewController - - RNImageCropPicker/QBImagePickerController (0.36.2): - - React-Core - - React-RCTImage - - TOCropViewController - - RNReactNativeHapticFeedback (1.11.0): - - React-Core - - RNReanimated (2.2.2): - - DoubleConversion - - FBLazyVector - - FBReactNativeSpec - - glog - - RCT-Folly - - RCTRequired - - RCTTypeSafety - - React - - React-callinvoker - - React-Core - - React-Core/DevSupport - - React-Core/RCTWebSocket - - React-CoreModules - - React-cxxreact - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-RCTActionSheet - - React-RCTAnimation - - React-RCTBlob - - React-RCTImage - - React-RCTLinking - - React-RCTNetwork - - React-RCTSettings - - React-RCTText - - React-RCTVibration - - ReactCommon/turbomodule/core - - Yoga - - RNScreens (3.2.0): - - React-Core - - RNShare (6.0.1): - - React-Core - - RNSVG (12.1.1): - - React - - TOCropViewController (2.6.0) - - Yoga (1.14.0) - - YogaKit (1.18.1): - - Yoga (~> 1.14) - -DEPENDENCIES: - - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) - - Flipper (= 0.93.0) - - Flipper-Boost-iOSX (= 1.76.0.1.11) - - Flipper-DoubleConversion (= 3.1.7) - - Flipper-Fmt (= 7.1.7) - - Flipper-Folly (= 2.6.7) - - Flipper-Glog (= 0.3.6) - - Flipper-PeerTalk (= 0.0.4) - - Flipper-RSocket (= 1.4.3) - - FlipperKit (= 0.93.0) - - FlipperKit/Core (= 0.93.0) - - FlipperKit/CppBridge (= 0.93.0) - - FlipperKit/FBCxxFollyDynamicConvert (= 0.93.0) - - FlipperKit/FBDefines (= 0.93.0) - - FlipperKit/FKPortForwarding (= 0.93.0) - - FlipperKit/FlipperKitHighlightOverlay (= 0.93.0) - - FlipperKit/FlipperKitLayoutPlugin (= 0.93.0) - - FlipperKit/FlipperKitLayoutTextSearchable (= 0.93.0) - - FlipperKit/FlipperKitNetworkPlugin (= 0.93.0) - - FlipperKit/FlipperKitReactPlugin (= 0.93.0) - - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.93.0) - - FlipperKit/SKIOSNetworkPlugin (= 0.93.0) - - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - - hermes-engine (~> 0.8.1) - - libevent (~> 2.1.12) - - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) - - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - - React (from `../node_modules/react-native/`) - - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - - React-Core (from `../node_modules/react-native/`) - - React-Core/DevSupport (from `../node_modules/react-native/`) - - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) - - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) - - "react-native-cameraroll (from `../node_modules/@react-native-community/cameraroll`)" - - react-native-document-picker (from `../node_modules/react-native-document-picker`) - - react-native-image-resizer (from `../node_modules/react-native-image-resizer`) - - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)" - - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) - - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) - - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) - - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) - - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) - - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) - - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" - - RNFS (from `../node_modules/react-native-fs`) - - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) - - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) - - RNReactNativeHapticFeedback (from `../node_modules/react-native-haptic-feedback`) - - RNReanimated (from `../node_modules/react-native-reanimated`) - - RNScreens (from `../node_modules/react-native-screens`) - - RNShare (from `../node_modules/react-native-share`) - - RNSVG (from `../node_modules/react-native-svg`) - - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) - -SPEC REPOS: - trunk: - - boost-for-react-native - - CocoaAsyncSocket - - Flipper - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt - - Flipper-Folly - - Flipper-Glog - - Flipper-PeerTalk - - Flipper-RSocket - - FlipperKit - - fmt - - hermes-engine - - libevent - - OpenSSL-Universal - - TOCropViewController - - YogaKit - -EXTERNAL SOURCES: - DoubleConversion: - :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" - FBLazyVector: - :path: "../node_modules/react-native/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../node_modules/react-native/React/FBReactNativeSpec" - glog: - :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" - RCT-Folly: - :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" - RCTRequired: - :path: "../node_modules/react-native/Libraries/RCTRequired" - RCTTypeSafety: - :path: "../node_modules/react-native/Libraries/TypeSafety" - React: - :path: "../node_modules/react-native/" - React-callinvoker: - :path: "../node_modules/react-native/ReactCommon/callinvoker" - React-Core: - :path: "../node_modules/react-native/" - React-CoreModules: - :path: "../node_modules/react-native/React/CoreModules" - React-cxxreact: - :path: "../node_modules/react-native/ReactCommon/cxxreact" - React-hermes: - :path: "../node_modules/react-native/ReactCommon/hermes" - React-jsi: - :path: "../node_modules/react-native/ReactCommon/jsi" - React-jsiexecutor: - :path: "../node_modules/react-native/ReactCommon/jsiexecutor" - React-jsinspector: - :path: "../node_modules/react-native/ReactCommon/jsinspector" - react-native-cameraroll: - :path: "../node_modules/@react-native-community/cameraroll" - react-native-document-picker: - :path: "../node_modules/react-native-document-picker" - react-native-image-resizer: - :path: "../node_modules/react-native-image-resizer" - react-native-netinfo: - :path: "../node_modules/@react-native-community/netinfo" - react-native-safe-area-context: - :path: "../node_modules/react-native-safe-area-context" - React-perflogger: - :path: "../node_modules/react-native/ReactCommon/reactperflogger" - React-RCTActionSheet: - :path: "../node_modules/react-native/Libraries/ActionSheetIOS" - React-RCTAnimation: - :path: "../node_modules/react-native/Libraries/NativeAnimation" - React-RCTBlob: - :path: "../node_modules/react-native/Libraries/Blob" - React-RCTImage: - :path: "../node_modules/react-native/Libraries/Image" - React-RCTLinking: - :path: "../node_modules/react-native/Libraries/LinkingIOS" - React-RCTNetwork: - :path: "../node_modules/react-native/Libraries/Network" - React-RCTSettings: - :path: "../node_modules/react-native/Libraries/Settings" - React-RCTText: - :path: "../node_modules/react-native/Libraries/Text" - React-RCTVibration: - :path: "../node_modules/react-native/Libraries/Vibration" - React-runtimeexecutor: - :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" - ReactCommon: - :path: "../node_modules/react-native/ReactCommon" - RNCMaskedView: - :path: "../node_modules/@react-native-community/masked-view" - RNFS: - :path: "../node_modules/react-native-fs" - RNGestureHandler: - :path: "../node_modules/react-native-gesture-handler" - RNImageCropPicker: - :path: "../node_modules/react-native-image-crop-picker" - RNReactNativeHapticFeedback: - :path: "../node_modules/react-native-haptic-feedback" - RNReanimated: - :path: "../node_modules/react-native-reanimated" - RNScreens: - :path: "../node_modules/react-native-screens" - RNShare: - :path: "../node_modules/react-native-share" - RNSVG: - :path: "../node_modules/react-native-svg" - Yoga: - :path: "../node_modules/react-native/ReactCommon/yoga" - -SPEC CHECKSUMS: - boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 - DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 - FBLazyVector: 33c82491102f20ecddb6c6a2c273696ace3191e0 - FBReactNativeSpec: df8f81d2a7541ee6755a047b398a5cb5a72acd0e - Flipper: b1fddf9a17c32097b2b4c806ad158b2f36bb2692 - Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c - Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c - Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b - Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a - Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 - Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 - Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 - FlipperKit: aec2d931adeee48a07bab1ea8bcc8a6bb87dfce4 - fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 5337263514dd6f09803962437687240c5dc39aa4 - hermes-engine: 7dcd1dbd908e6353bd7e4a4add72dba7bf76bf84 - libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 - OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b - RCT-Folly: 0dd9e1eb86348ecab5ba76f910b56f4b5fef3c46 - RCTRequired: 6cf071ab2adfd769014b3d94373744ee6e789530 - RCTTypeSafety: b829c59453478bb5b02487b8de3336386ab93ab1 - React: 29d8a785041b96a2754c25cc16ddea57b7a618ce - React-callinvoker: 2857b61132bd7878b736e282581f4b42fd93002b - React-Core: 001e21bad5ca41e59e9d90df5c0b53da04c3ce8e - React-CoreModules: 0a0410ab296a62ab38e2f8d321e822d1fcc2fe49 - React-cxxreact: 8d904967134ae8ff0119c5357c42eaae976806f8 - React-hermes: ae17bfbf550cefc6331b9544f00b66ad1d9b9d99 - React-jsi: 12913c841713a15f64eabf5c9ad98592c0ec5940 - React-jsiexecutor: 43f2542aed3c26e42175b339f8d37fe3dd683765 - React-jsinspector: 41e58e5b8e3e0bf061fdf725b03f2144014a8fb0 - react-native-cameraroll: 88f4e62d9ecd0e1f253abe4f685474f2ea14bfa2 - react-native-document-picker: 1a7518132d4a06b67f459be9bb1464a567d2b3b4 - react-native-image-resizer: 13ac4af788f88af36d0353a1324401ebabd04fe4 - react-native-netinfo: e849fc21ca2f4128a5726c801a82fc6f4a6db50d - react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79 - React-perflogger: fd28ee1f2b5b150b00043f0301d96bd417fdc339 - React-RCTActionSheet: 7f3fa0855c346aa5d7c60f9ced16e067db6d29fa - React-RCTAnimation: 2119a18ee26159004b001bc56404ca5dbaae6077 - React-RCTBlob: a493cc306deeaba0c0efa8ecec2da154afd3a798 - React-RCTImage: 54999ddc896b7db6650af5760607aaebdf30425c - React-RCTLinking: 7fb3fa6397d3700c69c3d361870a299f04f1a2e6 - React-RCTNetwork: 329ee4f75bd2deb8cf6c4b14231b5bb272cbd9af - React-RCTSettings: 1a659d58e45719bc77c280dbebce6a5a5a2733f5 - React-RCTText: e12d7aae2a038be9ae72815436677a7c6549dd26 - React-RCTVibration: 92d41c2442e5328cc4d342cd7f78e5876b68bae5 - React-runtimeexecutor: 85187f19dd9c47a7c102f9994f9d14e4dc2110de - ReactCommon: eafed38eec7b591c31751bfa7494801618460459 - RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489 - RNFS: 3ab21fa6c56d65566d1fb26c2228e2b6132e5e32 - RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 - RNImageCropPicker: 35a3ceb837446fa11547704709bb22b5fac6d584 - RNReactNativeHapticFeedback: 653a8c126a0f5e88ce15ffe280b3ff37e1fbb285 - RNReanimated: ad24db8af24e3fe1b5c462785bc3db8d5baae2ee - RNScreens: c277bfc4b5bb7c2fe977d19635df6f974f95dfd6 - RNShare: 755de6bac084428f8fd8fb54c376f126f40e560c - RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f - TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 - Yoga: aa0cb45287ebe1004c02a13f279c55a95f1572f4 - YogaKit: f782866e155069a2cca2517aafea43200b01fd5a - -PODFILE CHECKSUM: 0569a2378c9caa73f814134fa1094fe897dff6d4 - -COCOAPODS: 1.11.2 diff --git a/examples/NativeMessaging/metro.config.js b/examples/NativeMessaging/metro.config.js deleted file mode 100644 index ca0a4a206f..0000000000 --- a/examples/NativeMessaging/metro.config.js +++ /dev/null @@ -1,19 +0,0 @@ -/* eslint-env node */ - -const PATH = require('path'); -const blacklist = require('metro-config/src/defaults/exclusionList'); - -const extractLinkedPackages = require('stream-chat-react-native-core/metro-dev-helpers/extract-linked-packages'); - -const projectRoot = PATH.resolve(__dirname); - -const { alternateRoots, extraNodeModules, moduleBlacklist } = extractLinkedPackages(projectRoot); - -module.exports = { - resolver: { - blacklistRE: blacklist(moduleBlacklist), - extraNodeModules, - useWatchman: false, - }, - watchFolders: [projectRoot].concat(alternateRoots), -}; diff --git a/examples/NativeMessaging/package.json b/examples/NativeMessaging/package.json deleted file mode 100644 index 2b81d1ad28..0000000000 --- a/examples/NativeMessaging/package.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "nativemessaging", - "version": "0.0.1", - "private": true, - "scripts": { - "android": "npx react-native run-android", - "ios": "npx react-native run-ios", - "lint": "eslint .", - "start": "npx react-native start", - "test": "jest", - "postinstall": "patch-package" - }, - "dependencies": { - "@react-native-community/cameraroll": "4.0.4", - "@react-native-community/masked-view": "0.1.11", - "@react-native-community/netinfo": "6.0.0", - "@react-navigation/native": "5.9.4", - "@react-navigation/stack": "5.14.5", - "@stream-io/flat-list-mvcp": "0.10.1", - "react": "17.0.2", - "react-native": "0.65.1", - "react-native-document-picker": "5.0.4", - "react-native-fs": "2.18.0", - "react-native-gesture-handler": "1.10.3", - "react-native-haptic-feedback": "1.11.0", - "react-native-image-crop-picker": "0.36.2", - "react-native-image-resizer": "1.4.4", - "react-native-reanimated": "2.2.2", - "react-native-safe-area-context": "3.2.0", - "react-native-screens": "3.2.0", - "react-native-share": "6.0.1", - "react-native-svg": "12.1.1", - "stream-chat-react-native": "link:../../package/native-package", - "stream-chat-react-native-core": "link:../../package" - }, - "devDependencies": { - "@babel/core": "7.13.10", - "@babel/runtime": "7.13.10", - "@react-native-community/eslint-config": "2.0.0", - "babel-jest": "26.6.3", - "eslint": "7.26.0", - "jest": "26.6.3", - "metro-react-native-babel-preset": "0.66.0", - "patch-package": "^6.4.7", - "react-native-codegen": "^0.0.7", - "react-test-renderer": "17.0.2" - }, - "jest": { - "preset": "react-native" - } -} diff --git a/examples/NativeMessaging/patches/@stream-io+flat-list-mvcp+0.10.1.patch b/examples/NativeMessaging/patches/@stream-io+flat-list-mvcp+0.10.1.patch deleted file mode 100644 index a7de98f529..0000000000 --- a/examples/NativeMessaging/patches/@stream-io+flat-list-mvcp+0.10.1.patch +++ /dev/null @@ -1,68727 +0,0 @@ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build.gradle b/node_modules/@stream-io/flat-list-mvcp/android/build.gradle -index 1cad8fd..20533f9 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build.gradle -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build.gradle -@@ -29,7 +29,7 @@ android { - compileSdkVersion getExtOrIntegerDefault('compileSdkVersion') - buildToolsVersion getExtOrDefault('buildToolsVersion') - defaultConfig { -- minSdkVersion 16 -+ minSdkVersion rootProject.ext.has('minSdkVersion') ? rootProject.ext.get('minSdkVersion') : 16 - targetSdkVersion getExtOrIntegerDefault('targetSdkVersion') - versionCode 1 - versionName "1.0" -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98/classes/classes.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/050e4de12f66a2376f0fc123d6e96e98/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523/classes/classes.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/54e3244b19537fbc758ed7f7ea5c4523/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5/classes/classes.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/68a23b096e03bb3bffb2e6228d0a22a5/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a/classes/classes.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/a6e8b6b058b686904a8d547f2ee8db7a/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683/classes/classes.dex -new file mode 100644 -index 0000000..b64de1f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/c8407501155173d5612d8848b4186683/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e.bin b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e.bin -new file mode 100644 -index 0000000..0d259dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e.bin -@@ -0,0 +1 @@ -+o/classes -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e/classes/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e/classes/classes.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/.transforms/ebc5d1621244e220b9ee7bf860cd8d4e/classes/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/androidTest/debug/com/mvcpscrollviewmanager/test/BuildConfig.java b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/androidTest/debug/com/mvcpscrollviewmanager/test/BuildConfig.java -new file mode 100644 -index 0000000..5104a7e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/androidTest/debug/com/mvcpscrollviewmanager/test/BuildConfig.java -@@ -0,0 +1,10 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.mvcpscrollviewmanager.test; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = Boolean.parseBoolean("true"); -+ public static final String APPLICATION_ID = "com.mvcpscrollviewmanager.test"; -+ public static final String BUILD_TYPE = "debug"; -+} -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/debug/com/mvcpscrollviewmanager/BuildConfig.java b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/debug/com/mvcpscrollviewmanager/BuildConfig.java -index 7784872..50e36ef 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/debug/com/mvcpscrollviewmanager/BuildConfig.java -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/debug/com/mvcpscrollviewmanager/BuildConfig.java -@@ -7,6 +7,4 @@ public final class BuildConfig { - public static final boolean DEBUG = Boolean.parseBoolean("true"); - public static final String LIBRARY_PACKAGE_NAME = "com.mvcpscrollviewmanager"; - public static final String BUILD_TYPE = "debug"; -- public static final int VERSION_CODE = 1; -- public static final String VERSION_NAME = "1.0"; - } -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/release/com/mvcpscrollviewmanager/BuildConfig.java b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/release/com/mvcpscrollviewmanager/BuildConfig.java -new file mode 100644 -index 0000000..5a091bf ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/generated/source/buildConfig/release/com/mvcpscrollviewmanager/BuildConfig.java -@@ -0,0 +1,10 @@ -+/** -+ * Automatically generated file. DO NOT MODIFY -+ */ -+package com.mvcpscrollviewmanager; -+ -+public final class BuildConfig { -+ public static final boolean DEBUG = false; -+ public static final String LIBRARY_PACKAGE_NAME = "com.mvcpscrollviewmanager"; -+ public static final String BUILD_TYPE = "release"; -+} -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml -index cdc9e35..db88a20 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml -@@ -5,7 +5,7 @@ - android:versionName="1.0" > - - - - -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json -new file mode 100644 -index 0000000..e562bbc ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json -@@ -0,0 +1,16 @@ -+{ -+ "version": 2, -+ "artifactType": { -+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.mvcpscrollviewmanager", -+ "variantName": "debug", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json -deleted file mode 100644 -index 69bd302..0000000 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json -+++ /dev/null -@@ -1,27 +0,0 @@ --{ -- "version": 1, -- "applicationId": "com.mvcpscrollviewmanager", -- "variantType": "LIBRARY", -- "elements": [ -- { -- "outputType": { -- "type": "AAPT_FRIENDLY_MERGED_MANIFESTS" -- }, -- "apkData": { -- "type": "MAIN", -- "splits": [], -- "versionCode": 1, -- "versionName": "1.0", -- "outputFile": "stream-io_flat-list-mvcp-debug.aar", -- "fullName": "debug", -- "baseName": "debug", -- "dirName": "" -- }, -- "path": "AndroidManifest.xml", -- "properties": { -- "packageId": "com.mvcpscrollviewmanager", -- "split": "" -- } -- } -- ] --} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml -new file mode 100644 -index 0000000..db88a20 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml -@@ -0,0 +1,11 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json -new file mode 100644 -index 0000000..df265c7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json -@@ -0,0 +1,16 @@ -+{ -+ "version": 2, -+ "artifactType": { -+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.mvcpscrollviewmanager", -+ "variantName": "release", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/debug/classes.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/debug/classes.jar -new file mode 100644 -index 0000000..05473da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/debug/classes.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/release/classes.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/release/classes.jar -new file mode 100644 -index 0000000..1a99542 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_main_jar/release/classes.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_metadata/release/aar-metadata.properties b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_metadata/release/aar-metadata.properties -new file mode 100644 -index 0000000..d8560bd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/aar_metadata/release/aar-metadata.properties -@@ -0,0 +1,2 @@ -+aarFormatVersion=1.0 -+aarMetadataVersion=1.0 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json -@@ -0,0 +1 @@ -+{} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json -new file mode 100644 -index 0000000..9e26dfe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json -@@ -0,0 +1 @@ -+{} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotations_typedef_file/debug/typedefs.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotations_typedef_file/debug/typedefs.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotations_typedef_file/release/typedefs.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/annotations_typedef_file/release/typedefs.txt -new file mode 100644 -index 0000000..e69de29 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar -new file mode 100644 -index 0000000..dfbe309 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/debug/classes.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/debug/classes.jar -index e532cda..e8fef37 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/debug/classes.jar and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/debug/classes.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/release/classes.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/release/classes.jar -new file mode 100644 -index 0000000..9706669 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_library_classes_jar/release/classes.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/debug/R.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/debug/R.jar -index 87d35a7..c5c66b5 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/debug/R.jar and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/debug/R.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/release/R.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/release/R.jar -new file mode 100644 -index 0000000..c5c66b5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_r_class_jar/release/R.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/debug/R.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/debug/R.txt -index d0a34de..a8801e1 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/debug/R.txt -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/debug/R.txt -@@ -853,9 +853,9 @@ 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_nuclide 0x0 --int string catalyst_debug_nuclide_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 -@@ -864,6 +864,7 @@ int string catalyst_hot_reloading_auto_enable 0x0 - int string catalyst_hot_reloading_stop 0x0 - int string catalyst_inspector 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 -@@ -1064,8 +1065,6 @@ 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 ClockTimePickerDialog 0x0 --int style ClockTimePickerStyle 0x0 - int style DialogAnimationFade 0x0 - int style DialogAnimationSlide 0x0 - int style Platform_AppCompat 0x0 -@@ -1097,8 +1096,6 @@ 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 SpinnerTimePickerDialog 0x0 --int style SpinnerTimePickerStyle 0x0 - int style TextAppearance_AppCompat 0x0 - int style TextAppearance_AppCompat_Body1 0x0 - int style TextAppearance_AppCompat_Body2 0x0 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/release/R.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/release/R.txt -new file mode 100644 -index 0000000..a8801e1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/compile_symbol_list/release/R.txt -@@ -0,0 +1,1789 @@ -+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 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 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 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 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 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 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 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 coordinatorLayoutStyle 0x0 -+int attr customNavigationLayout 0x0 -+int attr defaultQueryHint 0x0 -+int attr dialogCornerRadius 0x0 -+int attr dialogPreferredPadding 0x0 -+int attr dialogTheme 0x0 -+int attr displayOptions 0x0 -+int attr divider 0x0 -+int attr dividerHorizontal 0x0 -+int attr dividerPadding 0x0 -+int attr dividerVertical 0x0 -+int attr drawableSize 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 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 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 isLightTheme 0x0 -+int attr itemPadding 0x0 -+int attr keylines 0x0 -+int attr lastBaselineToBottomHeight 0x0 -+int attr layout 0x0 -+int attr layout_anchor 0x0 -+int attr layout_anchorGravity 0x0 -+int attr layout_behavior 0x0 -+int attr layout_dodgeInsetEdges 0x0 -+int attr layout_insetEdge 0x0 -+int attr layout_keyline 0x0 -+int attr lineHeight 0x0 -+int attr listChoiceBackgroundIndicator 0x0 -+int attr 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 listPreferredItemPaddingLeft 0x0 -+int attr listPreferredItemPaddingRight 0x0 -+int attr logo 0x0 -+int attr logoDescription 0x0 -+int attr maxButtonHeight 0x0 -+int attr measureWithLargestChild 0x0 -+int attr multiChoiceItemLayout 0x0 -+int attr navigationContentDescription 0x0 -+int attr navigationIcon 0x0 -+int attr navigationMode 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 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 showAsAction 0x0 -+int attr showDividers 0x0 -+int attr showText 0x0 -+int attr showTitle 0x0 -+int attr singleChoiceItemLayout 0x0 -+int attr spinBars 0x0 -+int attr spinnerDropDownItemStyle 0x0 -+int attr spinnerStyle 0x0 -+int attr splitTrack 0x0 -+int attr srcCompat 0x0 -+int attr state_above_anchor 0x0 -+int attr statusBarBackground 0x0 -+int attr subMenuArrow 0x0 -+int attr submitBackground 0x0 -+int attr subtitle 0x0 -+int attr subtitleTextAppearance 0x0 -+int attr subtitleTextColor 0x0 -+int attr subtitleTextStyle 0x0 -+int attr suggestionRowLayout 0x0 -+int attr 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 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_allow_stacked_button_bar 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_hint_foreground_material_dark 0x0 -+int color abc_hint_foreground_material_light 0x0 -+int color abc_input_method_navigation_guard 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 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_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_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 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_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_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_star_black_16dp 0x0 -+int drawable abc_ic_star_black_36dp 0x0 -+int drawable abc_ic_star_black_48dp 0x0 -+int drawable abc_ic_star_half_black_16dp 0x0 -+int drawable abc_ic_star_half_black_36dp 0x0 -+int drawable abc_ic_star_half_black_48dp 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_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_dark 0x0 -+int drawable abc_text_select_handle_left_mtrl_light 0x0 -+int drawable abc_text_select_handle_middle_mtrl_dark 0x0 -+int drawable abc_text_select_handle_middle_mtrl_light 0x0 -+int drawable abc_text_select_handle_right_mtrl_dark 0x0 -+int drawable abc_text_select_handle_right_mtrl_light 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 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 tooltip_frame_dark 0x0 -+int drawable tooltip_frame_light 0x0 -+int id accessibility_actions 0x0 -+int id accessibility_hint 0x0 -+int id accessibility_label 0x0 -+int id accessibility_role 0x0 -+int id accessibility_state 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 blocking 0x0 -+int id bottom 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 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 edit_query 0x0 -+int id end 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 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 left 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 parentPanel 0x0 -+int id progress_circular 0x0 -+int id progress_horizontal 0x0 -+int id radio 0x0 -+int id react_test_id 0x0 -+int id right 0x0 -+int id right_icon 0x0 -+int id right_side 0x0 -+int id rn_frame_file 0x0 -+int id rn_frame_method 0x0 -+int id rn_redbox_dismiss_button 0x0 -+int id rn_redbox_line_separator 0x0 -+int id rn_redbox_loading_indicator 0x0 -+int id rn_redbox_reload_button 0x0 -+int id rn_redbox_report_button 0x0 -+int id rn_redbox_report_label 0x0 -+int id rn_redbox_stack 0x0 -+int id 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 split_action_bar 0x0 -+int id src_atop 0x0 -+int id src_in 0x0 -+int id src_over 0x0 -+int id start 0x0 -+int id submenuarrow 0x0 -+int id submit_area 0x0 -+int id tabMode 0x0 -+int id tag_transition_group 0x0 -+int id tag_unhandled_key_event_manager 0x0 -+int id tag_unhandled_key_listeners 0x0 -+int id text 0x0 -+int id text2 0x0 -+int id textSpacerNoButtons 0x0 -+int id textSpacerNoTitle 0x0 -+int id time 0x0 -+int id title 0x0 -+int id titleDividerNoCustom 0x0 -+int id title_template 0x0 -+int id top 0x0 -+int id topPanel 0x0 -+int id uniform 0x0 -+int id up 0x0 -+int id view_tag_instance_handle 0x0 -+int id view_tag_native_id 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 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 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 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_font_family_body_1_material 0x0 -+int string abc_font_family_body_2_material 0x0 -+int string abc_font_family_button_material 0x0 -+int string abc_font_family_caption_material 0x0 -+int string abc_font_family_display_1_material 0x0 -+int string abc_font_family_display_2_material 0x0 -+int string abc_font_family_display_3_material 0x0 -+int string abc_font_family_display_4_material 0x0 -+int string abc_font_family_headline_material 0x0 -+int string abc_font_family_menu_material 0x0 -+int string abc_font_family_subhead_material 0x0 -+int string abc_font_family_title_material 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 button_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_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_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 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_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_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_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_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_SpinnerItem 0x0 -+int style Widget_AppCompat_Toolbar 0x0 -+int style Widget_AppCompat_Toolbar_Button_Navigation 0x0 -+int style Widget_Compat_NotificationActionContainer 0x0 -+int style Widget_Compat_NotificationActionText 0x0 -+int style Widget_Support_CoordinatorLayout 0x0 -+int style redboxButton 0x0 -+int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionBar_background 0 -+int styleable ActionBar_backgroundSplit 1 -+int styleable ActionBar_backgroundStacked 2 -+int styleable ActionBar_contentInsetEnd 3 -+int styleable ActionBar_contentInsetEndWithActions 4 -+int styleable ActionBar_contentInsetLeft 5 -+int styleable ActionBar_contentInsetRight 6 -+int styleable ActionBar_contentInsetStart 7 -+int styleable ActionBar_contentInsetStartWithNavigation 8 -+int styleable ActionBar_customNavigationLayout 9 -+int styleable ActionBar_displayOptions 10 -+int styleable ActionBar_divider 11 -+int styleable ActionBar_elevation 12 -+int styleable ActionBar_height 13 -+int styleable ActionBar_hideOnContentScroll 14 -+int styleable ActionBar_homeAsUpIndicator 15 -+int styleable ActionBar_homeLayout 16 -+int styleable ActionBar_icon 17 -+int styleable ActionBar_indeterminateProgressStyle 18 -+int styleable ActionBar_itemPadding 19 -+int styleable ActionBar_logo 20 -+int styleable ActionBar_navigationMode 21 -+int styleable ActionBar_popupTheme 22 -+int styleable ActionBar_progressBarPadding 23 -+int styleable ActionBar_progressBarStyle 24 -+int styleable ActionBar_subtitle 25 -+int styleable ActionBar_subtitleTextStyle 26 -+int styleable ActionBar_title 27 -+int styleable ActionBar_titleTextStyle 28 -+int[] styleable ActionBarLayout { 0x10100b3 } -+int styleable ActionBarLayout_android_layout_gravity 0 -+int[] styleable ActionMenuItemView { 0x101013f } -+int styleable ActionMenuItemView_android_minWidth 0 -+int[] styleable ActionMenuView { } -+int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable ActionMode_background 0 -+int styleable ActionMode_backgroundSplit 1 -+int styleable ActionMode_closeItemLayout 2 -+int styleable ActionMode_height 3 -+int styleable ActionMode_subtitleTextStyle 4 -+int styleable ActionMode_titleTextStyle 5 -+int[] styleable ActivityChooserView { 0x0, 0x0 } -+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 -+int styleable ActivityChooserView_initialActivityCount 1 -+int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable AlertDialog_android_layout 0 -+int styleable AlertDialog_buttonIconDimen 1 -+int styleable AlertDialog_buttonPanelSideLayout 2 -+int styleable AlertDialog_listItemLayout 3 -+int styleable AlertDialog_listLayout 4 -+int styleable AlertDialog_multiChoiceItemLayout 5 -+int styleable AlertDialog_showTitle 6 -+int styleable AlertDialog_singleChoiceItemLayout 7 -+int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } -+int styleable AnimatedStateListDrawableCompat_android_constantSize 0 -+int styleable AnimatedStateListDrawableCompat_android_dither 1 -+int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 -+int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 -+int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 -+int styleable AnimatedStateListDrawableCompat_android_visible 5 -+int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } -+int styleable AnimatedStateListDrawableItem_android_drawable 0 -+int styleable AnimatedStateListDrawableItem_android_id 1 -+int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } -+int styleable AnimatedStateListDrawableTransition_android_drawable 0 -+int styleable AnimatedStateListDrawableTransition_android_fromId 1 -+int styleable AnimatedStateListDrawableTransition_android_reversible 2 -+int styleable AnimatedStateListDrawableTransition_android_toId 3 -+int[] styleable 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 } -+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_firstBaselineToTopHeight 6 -+int styleable AppCompatTextView_fontFamily 7 -+int styleable AppCompatTextView_lastBaselineToBottomHeight 8 -+int styleable AppCompatTextView_lineHeight 9 -+int styleable AppCompatTextView_textAllCaps 10 -+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, 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 } -+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_actionModeCloseDrawable 17 -+int styleable AppCompatTheme_actionModeCopyDrawable 18 -+int styleable AppCompatTheme_actionModeCutDrawable 19 -+int styleable AppCompatTheme_actionModeFindDrawable 20 -+int styleable AppCompatTheme_actionModePasteDrawable 21 -+int styleable AppCompatTheme_actionModePopupWindowStyle 22 -+int styleable AppCompatTheme_actionModeSelectAllDrawable 23 -+int styleable AppCompatTheme_actionModeShareDrawable 24 -+int styleable AppCompatTheme_actionModeSplitBackground 25 -+int styleable AppCompatTheme_actionModeStyle 26 -+int styleable AppCompatTheme_actionModeWebSearchDrawable 27 -+int styleable AppCompatTheme_actionOverflowButtonStyle 28 -+int styleable AppCompatTheme_actionOverflowMenuStyle 29 -+int styleable AppCompatTheme_activityChooserViewStyle 30 -+int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 -+int styleable AppCompatTheme_alertDialogCenterButtons 32 -+int styleable AppCompatTheme_alertDialogStyle 33 -+int styleable AppCompatTheme_alertDialogTheme 34 -+int styleable AppCompatTheme_android_windowAnimationStyle 35 -+int styleable AppCompatTheme_android_windowIsFloating 36 -+int styleable AppCompatTheme_autoCompleteTextViewStyle 37 -+int styleable AppCompatTheme_borderlessButtonStyle 38 -+int styleable AppCompatTheme_buttonBarButtonStyle 39 -+int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 -+int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 -+int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 -+int styleable AppCompatTheme_buttonBarStyle 43 -+int styleable AppCompatTheme_buttonStyle 44 -+int styleable AppCompatTheme_buttonStyleSmall 45 -+int styleable AppCompatTheme_checkboxStyle 46 -+int styleable AppCompatTheme_checkedTextViewStyle 47 -+int styleable AppCompatTheme_colorAccent 48 -+int styleable AppCompatTheme_colorBackgroundFloating 49 -+int styleable AppCompatTheme_colorButtonNormal 50 -+int styleable AppCompatTheme_colorControlActivated 51 -+int styleable AppCompatTheme_colorControlHighlight 52 -+int styleable AppCompatTheme_colorControlNormal 53 -+int styleable AppCompatTheme_colorError 54 -+int styleable AppCompatTheme_colorPrimary 55 -+int styleable AppCompatTheme_colorPrimaryDark 56 -+int styleable AppCompatTheme_colorSwitchThumbNormal 57 -+int styleable AppCompatTheme_controlBackground 58 -+int styleable AppCompatTheme_dialogCornerRadius 59 -+int styleable AppCompatTheme_dialogPreferredPadding 60 -+int styleable AppCompatTheme_dialogTheme 61 -+int styleable AppCompatTheme_dividerHorizontal 62 -+int styleable AppCompatTheme_dividerVertical 63 -+int styleable AppCompatTheme_dropDownListViewStyle 64 -+int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 -+int styleable AppCompatTheme_editTextBackground 66 -+int styleable AppCompatTheme_editTextColor 67 -+int styleable AppCompatTheme_editTextStyle 68 -+int styleable AppCompatTheme_homeAsUpIndicator 69 -+int styleable AppCompatTheme_imageButtonStyle 70 -+int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 -+int styleable AppCompatTheme_listDividerAlertDialog 72 -+int styleable AppCompatTheme_listMenuViewStyle 73 -+int styleable AppCompatTheme_listPopupWindowStyle 74 -+int styleable AppCompatTheme_listPreferredItemHeight 75 -+int styleable AppCompatTheme_listPreferredItemHeightLarge 76 -+int styleable AppCompatTheme_listPreferredItemHeightSmall 77 -+int styleable AppCompatTheme_listPreferredItemPaddingLeft 78 -+int styleable AppCompatTheme_listPreferredItemPaddingRight 79 -+int styleable AppCompatTheme_panelBackground 80 -+int styleable AppCompatTheme_panelMenuListTheme 81 -+int styleable AppCompatTheme_panelMenuListWidth 82 -+int styleable AppCompatTheme_popupMenuStyle 83 -+int styleable AppCompatTheme_popupWindowStyle 84 -+int styleable AppCompatTheme_radioButtonStyle 85 -+int styleable AppCompatTheme_ratingBarStyle 86 -+int styleable AppCompatTheme_ratingBarStyleIndicator 87 -+int styleable AppCompatTheme_ratingBarStyleSmall 88 -+int styleable AppCompatTheme_searchViewStyle 89 -+int styleable AppCompatTheme_seekBarStyle 90 -+int styleable AppCompatTheme_selectableItemBackground 91 -+int styleable AppCompatTheme_selectableItemBackgroundBorderless 92 -+int styleable AppCompatTheme_spinnerDropDownItemStyle 93 -+int styleable AppCompatTheme_spinnerStyle 94 -+int styleable AppCompatTheme_switchStyle 95 -+int styleable AppCompatTheme_textAppearanceLargePopupMenu 96 -+int styleable AppCompatTheme_textAppearanceListItem 97 -+int styleable AppCompatTheme_textAppearanceListItemSecondary 98 -+int styleable AppCompatTheme_textAppearanceListItemSmall 99 -+int styleable AppCompatTheme_textAppearancePopupMenuHeader 100 -+int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101 -+int styleable AppCompatTheme_textAppearanceSearchResultTitle 102 -+int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103 -+int styleable AppCompatTheme_textColorAlertDialogListItem 104 -+int styleable AppCompatTheme_textColorSearchUrl 105 -+int styleable AppCompatTheme_toolbarNavigationButtonStyle 106 -+int styleable AppCompatTheme_toolbarStyle 107 -+int styleable AppCompatTheme_tooltipForegroundColor 108 -+int styleable AppCompatTheme_tooltipFrameBackground 109 -+int styleable AppCompatTheme_viewInflaterClass 110 -+int styleable AppCompatTheme_windowActionBar 111 -+int styleable AppCompatTheme_windowActionBarOverlay 112 -+int styleable AppCompatTheme_windowActionModeOverlay 113 -+int styleable AppCompatTheme_windowFixedHeightMajor 114 -+int styleable AppCompatTheme_windowFixedHeightMinor 115 -+int styleable AppCompatTheme_windowFixedWidthMajor 116 -+int styleable AppCompatTheme_windowFixedWidthMinor 117 -+int styleable AppCompatTheme_windowMinWidthMajor 118 -+int styleable AppCompatTheme_windowMinWidthMinor 119 -+int styleable AppCompatTheme_windowNoTitle 120 -+int[] styleable ButtonBarLayout { 0x0 } -+int styleable ButtonBarLayout_allowStacking 0 -+int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 } -+int styleable ColorStateListItem_alpha 0 -+int styleable ColorStateListItem_android_alpha 1 -+int styleable ColorStateListItem_android_color 2 -+int[] styleable CompoundButton { 0x1010107, 0x0, 0x0 } -+int styleable CompoundButton_android_button 0 -+int styleable CompoundButton_buttonTint 1 -+int styleable CompoundButton_buttonTintMode 2 -+int[] styleable CoordinatorLayout { 0x0, 0x0 } -+int styleable CoordinatorLayout_keylines 0 -+int styleable CoordinatorLayout_statusBarBackground 1 -+int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable CoordinatorLayout_Layout_android_layout_gravity 0 -+int styleable CoordinatorLayout_Layout_layout_anchor 1 -+int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 -+int styleable CoordinatorLayout_Layout_layout_behavior 3 -+int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 -+int styleable CoordinatorLayout_Layout_layout_insetEdge 5 -+int styleable CoordinatorLayout_Layout_layout_keyline 6 -+int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+int styleable DrawerArrowToggle_arrowHeadLength 0 -+int styleable DrawerArrowToggle_arrowShaftLength 1 -+int styleable DrawerArrowToggle_barLength 2 -+int styleable DrawerArrowToggle_color 3 -+int styleable DrawerArrowToggle_drawableSize 4 -+int styleable DrawerArrowToggle_gapBetweenBars 5 -+int styleable DrawerArrowToggle_spinBars 6 -+int styleable DrawerArrowToggle_thickness 7 -+int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } -+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 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 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, 0x1010095, 0x1010097, 0x1010096, 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_textSize 8 -+int styleable TextAppearance_android_textStyle 9 -+int styleable TextAppearance_android_typeface 10 -+int styleable TextAppearance_fontFamily 11 -+int styleable TextAppearance_textAllCaps 12 -+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 } -+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_navigationContentDescription 14 -+int styleable Toolbar_navigationIcon 15 -+int styleable Toolbar_popupTheme 16 -+int styleable Toolbar_subtitle 17 -+int styleable Toolbar_subtitleTextAppearance 18 -+int styleable Toolbar_subtitleTextColor 19 -+int styleable Toolbar_title 20 -+int styleable Toolbar_titleMargin 21 -+int styleable Toolbar_titleMarginBottom 22 -+int styleable Toolbar_titleMarginEnd 23 -+int styleable Toolbar_titleMarginStart 24 -+int styleable Toolbar_titleMarginTop 25 -+int styleable Toolbar_titleMargins 26 -+int styleable Toolbar_titleTextAppearance 27 -+int styleable Toolbar_titleTextColor 28 -+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/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex -new file mode 100644 -index 0000000..093ba4a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/classes_0.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/classes_0.dex -new file mode 100644 -index 0000000..67011a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/classes_0.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/classes.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/classes.dex -new file mode 100644 -index 0000000..ce7d8c2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/classes.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out -new file mode 100644 -index 0000000..439a3f7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out -new file mode 100644 -index 0000000..bf0d87a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out -@@ -0,0 +1 @@ -+4 -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state -index a292b40..d5ff387 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state -new file mode 100644 -index 0000000..14468b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= -new file mode 100644 -index 0000000..33a6966 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= -new file mode 100644 -index 0000000..d4118d6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= -new file mode 100644 -index 0000000..5707aa8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= -new file mode 100644 -index 0000000..59222d9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= -new file mode 100644 -index 0000000..30185e4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= -new file mode 100644 -index 0000000..22a6ffc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= -new file mode 100644 -index 0000000..505cb15 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= -new file mode 100644 -index 0000000..2db9520 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= -new file mode 100644 -index 0000000..81db71e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= -new file mode 100644 -index 0000000..7da10ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= -new file mode 100644 -index 0000000..c42746e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= -new file mode 100644 -index 0000000..7eb6252 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= -new file mode 100644 -index 0000000..25e1933 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= -new file mode 100644 -index 0000000..78ac06c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= -new file mode 100644 -index 0000000..87d37d1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= -new file mode 100644 -index 0000000..5039eb8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= -new file mode 100644 -index 0000000..acf8963 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= -new file mode 100644 -index 0000000..ca57af2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= -new file mode 100644 -index 0000000..45189c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= -new file mode 100644 -index 0000000..5773a00 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= -new file mode 100644 -index 0000000..cf14c7c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= -new file mode 100644 -index 0000000..98ec886 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= -new file mode 100644 -index 0000000..f26e2cf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= -new file mode 100644 -index 0000000..189e23f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= -new file mode 100644 -index 0000000..b2e1806 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= -new file mode 100644 -index 0000000..8568b5b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= -new file mode 100644 -index 0000000..8a88caf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= -new file mode 100644 -index 0000000..98c2f5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= -new file mode 100644 -index 0000000..846dea1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= -new file mode 100644 -index 0000000..fb3ddd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= -new file mode 100644 -index 0000000..ffb61da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= -new file mode 100644 -index 0000000..0468d15 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= -new file mode 100644 -index 0000000..5850599 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= -new file mode 100644 -index 0000000..c3eef53 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= -new file mode 100644 -index 0000000..6ccda32 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= -new file mode 100644 -index 0000000..71460a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= -new file mode 100644 -index 0000000..d0a17a9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= -new file mode 100644 -index 0000000..6c3f095 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= -new file mode 100644 -index 0000000..9ec364b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= -new file mode 100644 -index 0000000..b2a9d0b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= -new file mode 100644 -index 0000000..de755d1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= -new file mode 100644 -index 0000000..fe4ea95 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= -new file mode 100644 -index 0000000..dc7b90e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= -new file mode 100644 -index 0000000..f4381a6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= -new file mode 100644 -index 0000000..124f128 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= -new file mode 100644 -index 0000000..8fd6cd4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= -new file mode 100644 -index 0000000..dfc6b23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= -new file mode 100644 -index 0000000..d05d5f7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= -new file mode 100644 -index 0000000..2cec677 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= -new file mode 100644 -index 0000000..144d863 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= -new file mode 100644 -index 0000000..01ac441 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/merge-state b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/merge-state -new file mode 100644 -index 0000000..9b5c7c4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/merge-state differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= -new file mode 100644 -index 0000000..33a6966 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+7zS4d0hTURPVheQ6GpDyeNuiSQ= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= -new file mode 100644 -index 0000000..d4118d6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/+EY0whr3L0wtf5viGgstMtULMJ0= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= -new file mode 100644 -index 0000000..5707aa8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0K8Gi+TN5QGpEBkd47LPJkRAkoQ= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= -new file mode 100644 -index 0000000..59222d9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/0vsYGToYfWOc2BYjMzLWxJWmOpE= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= -new file mode 100644 -index 0000000..30185e4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/1D8Cb7j9b4mF8c2auR_hXDjKxgk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= -new file mode 100644 -index 0000000..22a6ffc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/2ShgTVqe205wEGUxMrzI4ifrqo4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= -new file mode 100644 -index 0000000..505cb15 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/3WvxgGaDEMlvvflV1mRjdqm1_OM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= -new file mode 100644 -index 0000000..2db9520 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/53siJaLu0wSHjvI_2fnZswLhT3I= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= -new file mode 100644 -index 0000000..81db71e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/7XN685sjG2IIDMaxVGpNDY+sdhg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= -new file mode 100644 -index 0000000..7da10ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8HoRVLWxAvdP2z4sXXyS8dbX+HY= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= -new file mode 100644 -index 0000000..c42746e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8qz4U_P8wjBdSLhFCORTfk7x2rE= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= -new file mode 100644 -index 0000000..7eb6252 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/8tC76tBw12EUaN9cn0rqdew4FMc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= -new file mode 100644 -index 0000000..25e1933 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/94QbAvsoVDUHc32tmXx37oSnd2Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= -new file mode 100644 -index 0000000..78ac06c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/COwyz2sah1a5aetKx7iz6I5A4Og= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= -new file mode 100644 -index 0000000..87d37d1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/E7pLE0tgBXJgl5mm5FL1of4dd_g= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= -new file mode 100644 -index 0000000..5039eb8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/HsNtM8LXySVJ7cuNfQm8eX5AJlM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= -new file mode 100644 -index 0000000..acf8963 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KPCYPUQ1+YEkpqcGGU0d1aFc3OU= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= -new file mode 100644 -index 0000000..ca57af2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/KXDSH5x8g3o1S7o4aZu29PRW9jM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= -new file mode 100644 -index 0000000..45189c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/LftnH7DRbbYBDEXSnMmFs28pEJc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= -new file mode 100644 -index 0000000..5773a00 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Lxnzr8CRnosg4v0z8bD2ndTHAUY= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= -new file mode 100644 -index 0000000..cf14c7c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/MS19k_aZ3f3VHKwO0ae6kxtu_oM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= -new file mode 100644 -index 0000000..98ec886 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/NSWSlhvOwdu24g2JMALEHJr2opc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= -new file mode 100644 -index 0000000..f26e2cf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/PUWieIlECn9S9UOkbDK99CS8IOo= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= -new file mode 100644 -index 0000000..189e23f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/RV_6LpFGDKk4JXStocJ+cZIwY+o= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= -new file mode 100644 -index 0000000..b2e1806 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/Sle03x3uy8B8N+wGRTGQC0X2Avo= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= -new file mode 100644 -index 0000000..8568b5b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/UY5x4uRrYOdWPm8ehIXwjhR3z+4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= -new file mode 100644 -index 0000000..8a88caf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/V1Vtyp2qW6QIJlnv_uq8XNMVsa4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= -new file mode 100644 -index 0000000..98c2f5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/VzGmlDnjuuyUYMajjfktZvqqYd4= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= -new file mode 100644 -index 0000000..846dea1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/_ixR0h3aCAW+Y_fY9cHc9y8nLTk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= -new file mode 100644 -index 0000000..fb3ddd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/bYkC9J+ku9guYnxEqOBXTV7_Ihk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= -new file mode 100644 -index 0000000..ffb61da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/cl7CWubYiFQ4oTb3_tgcKFjjTwk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= -new file mode 100644 -index 0000000..0468d15 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/dwV0q01598hKHaSVy9c7ZDhWq+Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= -new file mode 100644 -index 0000000..5850599 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/f8X5eHVdX7LBHFsIiRAJLh2iYZc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= -new file mode 100644 -index 0000000..c3eef53 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/fDV3g5yzZSSmrYTcMxxcapMuBFg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= -new file mode 100644 -index 0000000..6ccda32 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/h2K3IaTLJNv05zDttCVQaaSY13w= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= -new file mode 100644 -index 0000000..71460a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/jfqC6XkuixxCr6_tMn2hJDlV17Q= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= -new file mode 100644 -index 0000000..d0a17a9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/keZMqbggPSWgZEhbyPfQhL5UZ0s= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= -new file mode 100644 -index 0000000..6c3f095 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/klN4UbOEIHfSLf_uUwZ0Qgv8kow= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= -new file mode 100644 -index 0000000..9ec364b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mAMdWoIdPhckmIgQP_eZJzrlEKc= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= -new file mode 100644 -index 0000000..b2a9d0b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/mJjEasN6Zem761ILjaqQ04Crdbk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= -new file mode 100644 -index 0000000..de755d1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/nLIxTgI6_ckxYUMvN8xjbJ40tN8= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= -new file mode 100644 -index 0000000..fe4ea95 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/pN_GH7ODdavQPlg0RSUamyM2iHM= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= -new file mode 100644 -index 0000000..dc7b90e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/qxiv0T8PqSFDSFWHN0L20fs3kQI= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= -new file mode 100644 -index 0000000..f4381a6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/rXiOTet1hDvaVB7PpH3oxdoUghs= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= -new file mode 100644 -index 0000000..124f128 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/t5RNI+mxF+RcuDNqM1Vhz7l2D64= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= -new file mode 100644 -index 0000000..8fd6cd4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/tJHZVSjFf6pQjhr6khvW78SlKvk= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= -new file mode 100644 -index 0000000..dfc6b23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/uZ4Ap9ny4efItlYuRhpMDxnd7rg= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= -new file mode 100644 -index 0000000..d05d5f7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/v6uzlRtd7qnMKmRhlKcDtvT924E= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= -new file mode 100644 -index 0000000..2cec677 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vZRTyimWV9SBJW6fVjtjkB0ejvA= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= -new file mode 100644 -index 0000000..144d863 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/vkCYGqHfTCNhZ3qHUS8ZeJ_Iri0= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= -new file mode 100644 -index 0000000..01ac441 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/debugAndroidTest-mergeNativeLibs/zip-cache/yaskczhx4Jfk9kjmOHK5MB3soos= differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml -new file mode 100644 -index 0000000..3e4b9c3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml -new file mode 100644 -index 0000000..6ed4562 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties -new file mode 100644 -index 0000000..08c7a0b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties -@@ -0,0 +1,386 @@ -+#Thu Aug 26 15:38:20 BRT 2021 -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_default.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_singlechoice_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/xml/rn_dev_preferences.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/xml_rn_dev_preferences.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_toolbar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_bar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_chronometer.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_time.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_tooltip.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_tooltip.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_top_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_content_include.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_down.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_down.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_go_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_expanded_menu_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_btn_colored_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_icon.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_view.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_edittext.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_out.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_menu_overflow_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_edittext.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/drawable/redbox_top_border_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_redbox_top_border_background.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_icon_group.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-watch-v20/abc_dialog_material_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_text_cursor_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_close_item_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-v26/abc_screen_toolbar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_spinner.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_exit.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_spinner_textfield_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_up_container.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_tick_mark_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v23/abc_control_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_small_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_top.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_borderless_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_seek_thumb.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_title_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_enter.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_textfield_search_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/fps_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_fps_view.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-v21/notification_action_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_switch_track.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_thumb_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_in.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_radio_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_select_dialog_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action_tombstone.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_custom_big.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_cascading_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_cascading_menu_item_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_edit_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_btn_checkable.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_in.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_multichoice_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_vector_test.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_tab_indicator_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_enter.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_enter.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_btn_checkable.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_up.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_up.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_default.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_clear_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_borderless_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/dev_loading_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_dev_loading_view.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_search_url_text.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_indicator_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_item_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg_low.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_seek_thumb.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_icon_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_top.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_track_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_dialog_material_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_dialog_material_background.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_checkbox.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_internal_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_switch_thumb_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v21/abc_btn_colored_borderless_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_out.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_voice_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_tile_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_exit.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_exit.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/support_simple_spinner_dropdown_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_btn_colored_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_switch_track.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_list_divider_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_list_divider_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view_list_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_title.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_title.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_radio.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_check_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_frame.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_frame.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_header_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_ab_back_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_spinner.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_color_highlight_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml -new file mode 100644 -index 0000000..d8fe69b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigeer tuis" -+ "Navigeer 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" -+ "Soeknavraag" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml -new file mode 100644 -index 0000000..1029135 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "ወደ መነሻ ይዳስሱ" -+ "ወደ ላይ ይዳስሱ" -+ "ተጨማሪ አማራጮች" -+ "ተከናውኗል" -+ "ሁሉንም ይመልከቱ" -+ "መተግበሪያ ይምረጡ" -+ "ጠፍቷል" -+ "በርቷል" -+ "Alt+" -+ "Ctrl+" -+ "ሰርዝ" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "ምናሌ+" -+ "ፈልግ…" -+ "መጠይቅ አጽዳ" -+ "የፍለጋ ጥያቄ" -+ "ፍለጋ" -+ "መጠይቅ ያስረክቡ" -+ "የድምፅ ፍለጋ" -+ "ከሚከተለው ጋር ያጋሩ" -+ "ከ%s ጋር አጋራ" -+ "ሰብስብ" -+ "ፈልግ" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml -new file mode 100644 -index 0000000..e7fb419 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "التنقل إلى الشاشة الرئيسية" -+ "التنقل إلى أعلى" -+ "خيارات إضافية" -+ "تم" -+ "عرض الكل" -+ "اختيار تطبيق" -+ "إيقاف" -+ "تشغيل" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "القائمة+" -+ "بحث…" -+ "محو طلب البحث" -+ "طلب البحث" -+ "بحث" -+ "إرسال طلب البحث" -+ "البحث الصوتي" -+ "مشاركة مع" -+ "مشاركة مع %s" -+ "تصغير" -+ "البحث" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml -new file mode 100644 -index 0000000..2287e53 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "গৃহ পৃষ্ঠালৈ যাওক" -+ "ওপৰলৈ যাওক" -+ "অধিক বিকল্প" -+ "সম্পন্ন কৰা হ\'ল" -+ "সকলো চাওক" -+ "এটা এপ্ বাছনি কৰক" -+ "অফ কৰক" -+ "অন কৰক" -+ "Alt+" -+ "CTRL+" -+ "মচক" -+ "এণ্টাৰ" -+ "ফাংশ্বন+" -+ "মেটা+" -+ "শ্বিফ্ট+" -+ "স্পেচ" -+ "Sym+" -+ "মেনু+" -+ "অনুসন্ধান কৰক…" -+ "প্ৰশ্ন মচক" -+ "সন্ধান কৰিব খোজা প্ৰশ্ন" -+ "সন্ধান কৰক" -+ "প্ৰশ্ন দাখিল কৰক" -+ "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক" -+ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" -+ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" -+ "সংকুচিত কৰক" -+ "অনুসন্ধান কৰক" -+ "৯৯৯+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml -new file mode 100644 -index 0000000..8bbbd5b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Evə naviqasiya et" -+ "Yuxarı get" -+ "Digər variantlar" -+ "Hazırdır" -+ "Hamısına baxın" -+ "Tətbiq seçin" -+ "DEAKTİV" -+ "AKTİV" -+ "Alt+" -+ "Ctrl+" -+ "silin" -+ "daxil olun" -+ "Funksiya+" -+ "Meta+" -+ "Shift+" -+ "kosmos" -+ "Sym+" -+ "Menyu+" -+ "Axtarış..." -+ "Sorğunu təmizlə" -+ "Axtarış sorğusu" -+ "Axtarış" -+ "Sorğunu göndərin" -+ "Səsli axtarış" -+ "Bununla paylaşın" -+ "%s ilə paylaşın" -+ "Yığışdırın" -+ "Axtarış" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml -new file mode 100644 -index 0000000..77f07c2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Odlazak na Početnu" -+ "Kretanje nagore" -+ "Još opcija" -+ "Gotovo" -+ "Prikaži sve" -+ "Izbor aplikacije" -+ "ISKLJUČI" -+ "UKLJUČI" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "taster za razmak" -+ "Sym+" -+ "Menu+" -+ "Pretražite..." -+ "Brisanje upita" -+ "Upit za pretragu" -+ "Pretraga" -+ "Slanje upita" -+ "Glasovna pretraga" -+ "Deli sa" -+ "Deljenje sa aplikacijom %s" -+ "Skupi" -+ "Pretraži" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml -new file mode 100644 -index 0000000..a0019be ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Перайсці на галоўную старонку" -+ "Перайсці ўверх" -+ "Дадатковыя параметры" -+ "Гатова" -+ "Прагледзець усё" -+ "Выбраць праграму" -+ "ВЫКЛ." -+ "УКЛ." -+ "Alt +" -+ "Ctrl +" -+ "Delete" -+ "Enter" -+ "Fn +" -+ "Meta +" -+ "Shift +" -+ "Прабел" -+ "Sym +" -+ "Меню +" -+ "Пошук..." -+ "Выдалiць запыт" -+ "Запыт на пошук" -+ "Пошук" -+ "Адправіць запыт" -+ "Галасавы пошук" -+ "Абагуліць з" -+ "Абагуліць праз праграму %s" -+ "Згарнуць" -+ "Пошук" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml -new file mode 100644 -index 0000000..ce1cb44 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml -new file mode 100644 -index 0000000..b9e182a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "হোম এ নেভিগেট করুন" -+ "উপরের দিকে নেভিগেট করুন" -+ "আরও বিকল্প" -+ "সম্পন্ন হয়েছে" -+ "সবগুলো দেখুন" -+ "একটি অ্যাপ্লিকেশান বেছে নিন" -+ "বন্ধ" -+ "চালু" -+ "Alt+" -+ "Ctrl+" -+ "মুছুন" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "স্পেস" -+ "Sym+" -+ "মেনু+" -+ "অনুসন্ধান..." -+ "ক্যোয়ারী সাফ করুন" -+ "ক্যোয়ারী খুঁজুন" -+ "খুঁজুন" -+ "ক্যোয়ারী জমা দিন" -+ "ভয়েস অনুসন্ধান" -+ "এর সাথে শেয়ার করুন" -+ "%s এর সাথে শেয়ার করুন" -+ "সঙ্কুচিত করুন" -+ "খুঁজুন" -+ "৯৯৯+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml -new file mode 100644 -index 0000000..bc8630d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Vrati se na početnu stranicu" -+ "Navigiraj prema gore" -+ "Više opcija" -+ "Gotovo" -+ "Prikaži sve" -+ "Odaberite aplikaciju" -+ "ISKLJUČI" -+ "UKLJUČI" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "razmaknica" -+ "Sym+" -+ "Menu+" -+ "Pretraži..." -+ "Obriši upit" -+ "Pretraži upit" -+ "Traži" -+ "Pošalji upit" -+ "Glasovno pretraživanje" -+ "Dijeli sa" -+ "Dijeli koristeći aplikaciju %s" -+ "Skupi" -+ "Pretraži" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml -new file mode 100644 -index 0000000..833039e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navega a la pàgina d\'inici" -+ "Navega cap a dalt" -+ "Més opcions" -+ "Fet" -+ "Mostra\'ls tots" -+ "Selecciona una aplicació" -+ "DESACTIVAT" -+ "ACTIVAT" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml -new file mode 100644 -index 0000000..a5878ca ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Přejít na plochu" -+ "Přejít nahoru" -+ "Více možností" -+ "Hotovo" -+ "Zobrazit vše" -+ "Vybrat aplikaci" -+ "VYPNUTO" -+ "ZAPNUTO" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Shift+" -+ "mezerník" -+ "Sym+" -+ "Menu+" -+ "Vyhledat…" -+ "Smazat dotaz" -+ "Vyhledávací dotaz" -+ "Hledat" -+ "Odeslat dotaz" -+ "Hlasové vyhledávání" -+ "Sdílet pomocí" -+ "Sdílet s aplikací %s" -+ "Sbalit" -+ "Hledat" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml -new file mode 100644 -index 0000000..7ae28b4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Naviger hjem" -+ "Naviger op" -+ "Flere muligheder" -+ "Luk" -+ "Se alle" -+ "Vælg en app" -+ "FRA" -+ "TIL" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Shift+" -+ "mellemrum" -+ "Sym+" -+ "Menu+" -+ "Søg…" -+ "Ryd forespørgslen" -+ "Søgeforespørgsel" -+ "Søg" -+ "Indsend forespørgslen" -+ "Talesøgning" -+ "Del med" -+ "Del med %s" -+ "Skjul" -+ "Søg" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml -new file mode 100644 -index 0000000..d2f8510 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Zur Startseite" -+ "Nach oben" -+ "Weitere Optionen" -+ "Fertig" -+ "Alle ansehen" -+ "App auswählen" -+ "Aus" -+ "An" -+ "Alt +" -+ "Strg +" -+ "Löschen" -+ "Eingabetaste" -+ "Funktionstaste +" -+ "Meta-Taste +" -+ "Umschalttaste +" -+ "Leertaste +" -+ "Sym-Taste +" -+ "Menütaste +" -+ "Suchen…" -+ "Suchanfrage löschen" -+ "Suchanfrage" -+ "Suchen" -+ "Suchanfrage senden" -+ "Sprachsuche" -+ "Freigeben für" -+ "Mit %s teilen" -+ "Minimieren" -+ "Suchen" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml -new file mode 100644 -index 0000000..de7398c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml -new file mode 100644 -index 0000000..52e1a7d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml -new file mode 100644 -index 0000000..edb8524 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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 todo" -+ "Elige una aplicación." -+ "DESACTIVADO" -+ "ACTIVADO" -+ "Alt+" -+ "Ctrl+" -+ "borrar" -+ "intro" -+ "Función+" -+ "Meta+" -+ "Mayúscula+" -+ "espacio" -+ "Sym+" -+ "Menú+" -+ "Buscar…" -+ "Eliminar la consulta" -+ "Búsqueda" -+ "Búsqueda" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml -new file mode 100644 -index 0000000..d2265ad ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ir a la pantalla de inicio" -+ "Desplazarse hacia arriba" -+ "Más opciones" -+ "Listo" -+ "Ver todo" -+ "Seleccionar una aplicación" -+ "DESACTIVADO" -+ "ACTIVADO" -+ "Alt +" -+ "Ctrl +" -+ "Eliminar" -+ "Intro" -+ "Función +" -+ "Meta +" -+ "Mayús +" -+ "Espacio" -+ "Sym +" -+ "Menú +" -+ "Buscar…" -+ "Borrar consulta" -+ "Consulta" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml -new file mode 100644 -index 0000000..05be6e9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigeerimine avaekraanile" -+ "Navigeerimine üles" -+ "Rohkem valikuid" -+ "Valmis" -+ "Kuva kõik" -+ "Valige rakendus" -+ "VÄLJAS" -+ "SEES" -+ "Alt +" -+ "Ctrl +" -+ "kustutamisklahv" -+ "sisestusklahv" -+ "Funktsiooniklahv +" -+ "Meta +" -+ "Tõstuklahv +" -+ "tühik" -+ "Sym +" -+ "Menüü +" -+ "Otsige …" -+ "Päringu tühistamine" -+ "Otsingupäring" -+ "Otsing" -+ "Päringu esitamine" -+ "Häälotsing" -+ "Jagamine:" -+ "Jagamine rakendusega %s" -+ "Ahendamine" -+ "Otsing" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml -new file mode 100644 -index 0000000..8c09875 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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" -+ "DESAKTIBATUTA" -+ "AKTIBATUTA" -+ "Alt +" -+ "Ktrl +" -+ "Ezabatu" -+ "Sartu" -+ "Funtzioa +" -+ "Meta +" -+ "Maius +" -+ "Zuriunea" -+ "Sym +" -+ "Menua +" -+ "Bilatu…" -+ "Garbitu kontsulta" -+ "Bilaketa-kontsulta" -+ "Bilatu" -+ "Bidali kontsulta" -+ "Ahozko bilaketa" -+ "Partekatu hauekin" -+ "Partekatu %s aplikazioarekin" -+ "Tolestu" -+ "Bilatu" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml -new file mode 100644 -index 0000000..90b2898 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "پیمایش به صفحه اصلی" -+ "پیمایش به بالا" -+ "گزینه‌های بیشتر" -+ "تمام" -+ "مشاهده همه" -+ "انتخاب برنامه" -+ "خاموش" -+ "روشن" -+ "‎Alt+‎" -+ "‎Ctrl+‎" -+ "delete" -+ "enter" -+ "‎Function+‎" -+ "‎Meta+‎" -+ "‎Shift+‎" -+ "کلید فاصله" -+ "‎Sym+‎" -+ "منو+" -+ "جستجو…" -+ "پاک کردن عبارت جستجو" -+ "عبارت جستجو" -+ "جستجو" -+ "ارسال عبارت جستجو" -+ "جستجوی گفتاری" -+ "اشتراک‌گذاری با" -+ "اشتراک‌گذاری با %s" -+ "کوچک کردن" -+ "جستجو" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml -new file mode 100644 -index 0000000..75b02bb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Siirry etusivulle" -+ "Siirry ylös" -+ "Lisää" -+ "Valmis" -+ "Näytä kaikki" -+ "Valitse sovellus" -+ "POIS KÄYTÖSTÄ" -+ "KÄYTÖSSÄ" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Vaihto+" -+ "välilyönti" -+ "Sym+" -+ "Valikko+" -+ "Haku…" -+ "Tyhjennä kysely" -+ "Hakulauseke" -+ "Haku" -+ "Lähetä kysely" -+ "Puhehaku" -+ "Jakaminen:" -+ "Jaa sovelluksessa %s" -+ "Kutista" -+ "Haku" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml -new file mode 100644 -index 0000000..f71cf03 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Revenir à l\'accueil" -+ "Revenir en haut de la page" -+ "Plus d\'options" -+ "Terminé" -+ "Voir toutes les chaînes" -+ "Sélectionnez une application" -+ "DÉSACTIVÉ" -+ "ACTIVÉ" -+ "Alt+" -+ "Ctrl+" -+ "supprimer" -+ "entrée" -+ "Fonction+" -+ "Méta+" -+ "Maj+" -+ "espace" -+ "Sym+" -+ "Menu+" -+ "Recherche en cours..." -+ "Effacer la requête" -+ "Requête de recherche" -+ "Rechercher" -+ "Envoyer la requête" -+ "Recherche vocale" -+ "Partager" -+ "Partager avec %s" -+ "Réduire" -+ "Rechercher" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml -new file mode 100644 -index 0000000..2aee397 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Revenir à l\'accueil" -+ "Revenir en haut de la page" -+ "Plus d\'options" -+ "OK" -+ "Tout afficher" -+ "Sélectionner une application" -+ "DÉSACTIVÉ" -+ "ACTIVÉ" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml -new file mode 100644 -index 0000000..d0081c6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ir á páxina de inicio" -+ "Desprazarse cara arriba" -+ "Máis opcións" -+ "Feito" -+ "Ver todas" -+ "Escoller unha aplicación" -+ "DESACTIVAR" -+ "ACTIVAR" -+ "Alt +" -+ "Ctrl +" -+ "eliminar" -+ "Intro" -+ "Función +" -+ "Meta +" -+ "Maiús +" -+ "espazo" -+ "Sim +" -+ "Menú +" -+ "Buscar…" -+ "Borrar consulta" -+ "Consulta de busca" -+ "Buscar" -+ "Enviar consulta" -+ "Busca por voz" -+ "Compartir con" -+ "Compartir con %s" -+ "Contraer" -+ "Buscar" -+ ">999" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml -new file mode 100644 -index 0000000..0a3b83b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "હોમ પર નેવિગેટ કરો" -+ "ઉપર નૅવિગેટ કરો" -+ "વધુ વિકલ્પો" -+ "થઈ ગયું" -+ "બધું જુઓ" -+ "એક ઍપ્લિકેશન પસંદ કરો" -+ "બંધ" -+ "ચાલુ" -+ "Alt+" -+ "Ctrl+" -+ "ડિલીટ કરો" -+ "Enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "Spacebar" -+ "Sym+" -+ "મેનૂ+" -+ "શોધો…" -+ "ક્વેરી સાફ કરો" -+ "શોધ ક્વેરી" -+ "શોધો" -+ "ક્વેરી સબમિટ કરો" -+ "વૉઇસ શોધ" -+ "આની સાથે શેર કરો" -+ "%sની સાથે શેર કરો" -+ "સંકુચિત કરો" -+ "શોધો" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml -new file mode 100644 -index 0000000..e38bb90 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml -new file mode 100644 -index 0000000..d5a138e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml -new file mode 100644 -index 0000000..6576cb7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml -new file mode 100644 -index 0000000..2c3e6ae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Idi na početnu" -+ "Idi gore" -+ "Dodatne opcije" -+ "Gotovo" -+ "Prikaži sve" -+ "Odabir aplikacije" -+ "ISKLJUČENO" -+ "UKLJUČENO" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "razmaknica" -+ "Sym+" -+ "Menu+" -+ "Pretražite…" -+ "Izbriši upit" -+ "Upit za pretraživanje" -+ "Pretraživanje" -+ "Pošalji upit" -+ "Glasovno pretraživanje" -+ "Dijeljenje sa" -+ "Dijeli putem aplikacije %s" -+ "Sažmi" -+ "Pretraživanje" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml -new file mode 100644 -index 0000000..f980def ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ugrás a főoldalra" -+ "Felfelé mozgatás" -+ "További lehetőségek" -+ "Kész" -+ "Összes megtekintése" -+ "Válasszon ki egy 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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml -new file mode 100644 -index 0000000..3247f9a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml -new file mode 100644 -index 0000000..314af7e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigasi ke beranda" -+ "Navigasi naik" -+ "Opsi lain" -+ "Selesai" -+ "Lihat semua" -+ "Pilih aplikasi" -+ "NONAKTIF" -+ "AKTIF" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "spasi" -+ "Sym+" -+ "Menu+" -+ "Telusuri..." -+ "Hapus kueri" -+ "Kueri penelusuran" -+ "Telusuri" -+ "Kirim kueri" -+ "Penelusuran suara" -+ "Bagikan dengan" -+ "Bagikan ke %s" -+ "Ciutkan" -+ "Telusuri" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml -new file mode 100644 -index 0000000..58321f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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+" -+ "delete" -+ "enter" -+ "Aðgerðarlykill+" -+ "Meta+" -+ "Shift+" -+ "bilslá" -+ "Sym+" -+ "Valmynd+" -+ "Leita…" -+ "Hreinsa fyrirspurn" -+ "Leitarfyrirspurn" -+ "Leita" -+ "Senda fyrirspurn" -+ "Raddleit" -+ "Deila með" -+ "Deila með %s" -+ "Minnka" -+ "Leita" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml -new file mode 100644 -index 0000000..48842b3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Vai alla home page" -+ "Vai in alto" -+ "Altre opzioni" -+ "Fine" -+ "Visualizza tutte" -+ "Scegli un\'applicazione" -+ "OFF" -+ "ON" -+ "ALT +" -+ "CTRL +" -+ "CANC" -+ "INVIO" -+ "FUNZIONE +" -+ "META +" -+ "MAIUSC +" -+ "barra spaziatrice" -+ "SYM +" -+ "MENU +" -+ "Cerca…" -+ "Cancella query" -+ "Query di ricerca" -+ "Cerca" -+ "Invia query" -+ "Ricerca vocale" -+ "Condividi con" -+ "Condividi tramite %s" -+ "Comprimi" -+ "Ricerca" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml -new file mode 100644 -index 0000000..ed74d57 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "נווט לדף הבית" -+ "נווט למעלה" -+ "עוד אפשרויות" -+ "בוצע" -+ "ראה הכל" -+ "בחר אפליקציה" -+ "כבוי" -+ "פועל" -+ "Alt+" -+ "Ctrl+‎" -+ "delete" -+ "Enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "מקש רווח" -+ "Sym+" -+ "תפריט+" -+ "חיפוש…" -+ "מחק שאילתה" -+ "שאילתת חיפוש" -+ "חיפוש" -+ "שלח שאילתה" -+ "חיפוש קולי" -+ "שתף עם" -+ "שתף עם %s" -+ "כווץ" -+ "חיפוש" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml -new file mode 100644 -index 0000000..6be4581 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml -new file mode 100644 -index 0000000..8e91c0a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "მთავარზე ნავიგაცია" -+ "ზემოთ ნავიგაცია" -+ "მეტი ვარიანტები" -+ "დასრულდა" -+ "ყველას ნახვა" -+ "აპის არჩევა" -+ "გამორთულია" -+ "ჩართულია" -+ "Alt+" -+ "Ctrl+" -+ "წაშლა" -+ "შეყვანა" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "Menu+" -+ "ძიება..." -+ "მოთხოვნის გასუფთავება" -+ "ძიების მოთხოვნა" -+ "ძიება" -+ "მოთხოვნის გადაგზავნა" -+ "ხმოვანი ძიება" -+ "გაზიარება:" -+ "გაუზიარეთ %s-ს" -+ "აკეცვა" -+ "ძიება" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml -new file mode 100644 -index 0000000..d9596d0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Негізгі бетте қозғалу" -+ "Жоғары қозғалу" -+ "Басқа опциялар" -+ "Дайын" -+ "Барлығын көру" -+ "Қолданбаны таңдау" -+ "ӨШІРУЛІ" -+ "ҚОСУЛЫ" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "бос орын" -+ "Sym+" -+ "Mәзір+" -+ "Іздеу…" -+ "Сұрақты жою" -+ "Сұрақты іздеу" -+ "Іздеу" -+ "Сұрақты жіберу" -+ "Дауыс арқылы іздеу" -+ "Бөлісу" -+ "%s қолданбасымен бөлісу" -+ "Тасалау" -+ "Іздеу" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml -new file mode 100644 -index 0000000..57735d2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml -new file mode 100644 -index 0000000..1e2402b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml -new file mode 100644 -index 0000000..5e0d052 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "홈 탐색" -+ "위로 탐색" -+ "옵션 더보기" -+ "완료" -+ "전체 보기" -+ "앱 선택" -+ "사용 안함" -+ "사용" -+ "Alt+" -+ "Ctrl+" -+ "삭제" -+ "입력" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "스페이스바" -+ "Sym+" -+ "Menu+" -+ "검색..." -+ "검색어 삭제" -+ "검색어" -+ "검색" -+ "검색어 보내기" -+ "음성 검색" -+ "공유 대상" -+ "%s와(과) 공유" -+ "접기" -+ "검색" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml -new file mode 100644 -index 0000000..7a8bb7f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml -new file mode 100644 -index 0000000..a12899f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml -new file mode 100644 -index 0000000..cc236eb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml -new file mode 100644 -index 0000000..f85a197 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml -@@ -0,0 +1,62 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml -new file mode 100644 -index 0000000..7dad77f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml -@@ -0,0 +1,4 @@ -+ -+ -+ 0px -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml -new file mode 100644 -index 0000000..3691890 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml -@@ -0,0 +1,276 @@ -+ -+ -+ @color/secondary_text_default_material_light -+ 0dp -+ 0dp -+ 12dp -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml -new file mode 100644 -index 0000000..d4a514a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml -@@ -0,0 +1,15 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml -new file mode 100644 -index 0000000..d807aae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml -@@ -0,0 +1,38 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml -new file mode 100644 -index 0000000..8b28a46 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml -@@ -0,0 +1,18 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml -new file mode 100644 -index 0000000..1eabc08 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Điều hướng về trang chủ" -+ "Điều hướng lên trê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+" -+ "phím cách" -+ "Sym+" -+ "Menu+" -+ "Tìm kiếm…" -+ "Xóa truy vấn" -+ "Tìm kiếm truy vấn" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml -new file mode 100644 -index 0000000..2d85812 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml -new file mode 100644 -index 0000000..deecc9e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml -new file mode 100644 -index 0000000..b499d2c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml -new file mode 100644 -index 0000000..68140f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml -new file mode 100644 -index 0000000..f533663 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml -new file mode 100644 -index 0000000..75f498a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml -new file mode 100644 -index 0000000..31e318d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Zulazulela ekhaya" -+ "Zulazulela phezulu" -+ "Izinketho eziningi" -+ "Kwenziwe" -+ "Buka konke" -+ "Khetha uhlelo lokusebenza" -+ "VALIWE" -+ "VULIWE" -+ "Alt+" -+ "Ctrl+" -+ "susa" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "Imenyu+" -+ "Iyasesha..." -+ "Sula inkinga" -+ "Umbuzo wosesho" -+ "Sesha" -+ "Hambisa umbuzo" -+ "Ukusesha ngezwi" -+ "Yabelana no-" -+ "Yabelana ne-%s" -+ "Goqa" -+ "Sesha" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml -new file mode 100644 -index 0000000..38478af ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml -@@ -0,0 +1,3553 @@ -+ -+ -+ -+ -+ -+ -+ -+ true -+ false -+ true -+ @android:color/black -+ #7fa87f -+ @android:color/black -+ @android:color/black -+ @color/material_deep_teal_200 -+ @color/material_deep_teal_500 -+ @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 -+ #ff009688 -+ #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 -+ @dimen/abc_action_bar_content_inset_material -+ 296dp -+ 4dp -+ 48dip -+ 320dip -+ 2dp -+ 2dp -+ 20dp -+ 3dp -+ 14sp -+ 14sp -+ 14sp -+ 12sp -+ 34sp -+ 45sp -+ 56sp -+ 112sp -+ 24sp -+ 22sp -+ 18sp -+ 14sp -+ 16sp -+ 14sp -+ 16sp -+ 16dp -+ 20sp -+ 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 -+ sans-serif -+ sans-serif-medium -+ sans-serif-medium -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif-light -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif-medium -+ 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 -+ Button -+ 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 -+ Toggle 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 Field -+ Search -+ Spin Button -+ busy -+ collapsed -+ expanded -+ mixed -+ off -+ on -+ 999+ -+ Summary -+ Tab List -+ Timer -+ Tool Bar -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml -new file mode 100644 -index 0000000..8b93f0c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml -@@ -0,0 +1,4275 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ @color/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+"#ffffffff#ff9e9e9e#1f000000#8a000000 -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Alt+""Ctrl+""delete""enter""Funcție+""Meta+""Shift+""spațiu""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Interogare 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 patungo sa home""Mag-navigate pataas""Higit pang mga opsyon""Tapos na""Tingnan lahat""Pumili ng isang 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」分享""收合""搜尋""Vai alla home page""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""barra spaziatrice""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Ricerca""Navega a la pàgina d\'inici""Navega cap a dalt""Més opcions""Fet""Mostra\'ls tots""Selecciona una aplicació""DESACTIVAT""ACTIVAT""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+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""Přejít na plochu""Přejít nahoru""Více možností""Hotovo""Zobrazit vše""Vybrat aplikaci""VYPNUTO""ZAPNUTO""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Vyhledávací dotaz""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet pomocí""Sdílet s aplikací %s""Sbalit""Hledat""转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %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""Σύμπτυξη""Αναζήτηση" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml -new file mode 100644 -index 0000000..21440b9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -index 5821c32..5921237 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -@@ -1,2 +1,2 @@ - -- -\ No newline at end of file -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -index 7f83a80..16ac9f0 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -@@ -1,2 +1,2 @@ - -- -\ No newline at end of file -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml -new file mode 100644 -index 0000000..411ab9b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties -new file mode 100644 -index 0000000..25b2023 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties -@@ -0,0 +1,386 @@ -+#Fri Aug 27 10:13:34 BRT 2021 -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_default.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_default.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_singlechoice_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/xml/rn_dev_preferences.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/xml/rn_dev_preferences.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_toolbar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_bar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple_overlay_action_mode.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_chronometer.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_time.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_tooltip.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_top_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_content_include.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_action_bar_item_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_down.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_down.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_go_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_expanded_menu_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_btn_colored_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_icon.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_view.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_dropdown_item_icons_2line.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_edittext.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_default_mtrl_shape.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_menu_overflow_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_edittext.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/drawable/redbox_top_border_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/redbox_top_border_background.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_icon_group.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-watch-v20/abc_dialog_material_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_text_cursor_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_close_item_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-v26/abc_screen_toolbar.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_spinner.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_exit.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_spinner_textfield_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_up_container.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_search_view.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_tick_mark_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v23/abc_control_background_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_small_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_button_bar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_top.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_borderless_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_seek_thumb.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_title_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_enter.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_textfield_search_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_shrink_fade_out_from_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/fps_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/fps_view.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-v21/notification_action_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_switch_track.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_thumb_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_radio_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_select_dialog_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action_tombstone.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_custom_big.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_cascading_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_edit_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_btn_checkable.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_in.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_multichoice_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_vector_test.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_tab_indicator_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_enter.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_btn_checkable.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_up.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_default.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_clear_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_borderless_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/dev_loading_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/dev_loading_view.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_search_url_text.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_indicator_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_item_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg_low.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_seek_thumb.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_dialog_title_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_icon_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_top.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_track_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_dialog_material_background.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_light.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_checkbox.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_internal_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_switch_thumb_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v21/abc_btn_colored_borderless_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_out.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_voice_search_api_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_tile_bg.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_exit.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/support_simple_spinner_dropdown_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_btn_colored_text_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_switch_track.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_grow_fade_in_from_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_list_divider_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view_list_item.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_title.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_radio.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_check_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_frame.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_header_item_layout.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_ab_back_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_bottom.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_spinner.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_dark.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_color_highlight_material.xml=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml -+/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml -new file mode 100644 -index 0000000..d8fe69b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigeer tuis" -+ "Navigeer 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" -+ "Soeknavraag" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml -new file mode 100644 -index 0000000..1029135 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "ወደ መነሻ ይዳስሱ" -+ "ወደ ላይ ይዳስሱ" -+ "ተጨማሪ አማራጮች" -+ "ተከናውኗል" -+ "ሁሉንም ይመልከቱ" -+ "መተግበሪያ ይምረጡ" -+ "ጠፍቷል" -+ "በርቷል" -+ "Alt+" -+ "Ctrl+" -+ "ሰርዝ" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "ምናሌ+" -+ "ፈልግ…" -+ "መጠይቅ አጽዳ" -+ "የፍለጋ ጥያቄ" -+ "ፍለጋ" -+ "መጠይቅ ያስረክቡ" -+ "የድምፅ ፍለጋ" -+ "ከሚከተለው ጋር ያጋሩ" -+ "ከ%s ጋር አጋራ" -+ "ሰብስብ" -+ "ፈልግ" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml -new file mode 100644 -index 0000000..e7fb419 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "التنقل إلى الشاشة الرئيسية" -+ "التنقل إلى أعلى" -+ "خيارات إضافية" -+ "تم" -+ "عرض الكل" -+ "اختيار تطبيق" -+ "إيقاف" -+ "تشغيل" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "القائمة+" -+ "بحث…" -+ "محو طلب البحث" -+ "طلب البحث" -+ "بحث" -+ "إرسال طلب البحث" -+ "البحث الصوتي" -+ "مشاركة مع" -+ "مشاركة مع %s" -+ "تصغير" -+ "البحث" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml -new file mode 100644 -index 0000000..2287e53 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "গৃহ পৃষ্ঠালৈ যাওক" -+ "ওপৰলৈ যাওক" -+ "অধিক বিকল্প" -+ "সম্পন্ন কৰা হ\'ল" -+ "সকলো চাওক" -+ "এটা এপ্ বাছনি কৰক" -+ "অফ কৰক" -+ "অন কৰক" -+ "Alt+" -+ "CTRL+" -+ "মচক" -+ "এণ্টাৰ" -+ "ফাংশ্বন+" -+ "মেটা+" -+ "শ্বিফ্ট+" -+ "স্পেচ" -+ "Sym+" -+ "মেনু+" -+ "অনুসন্ধান কৰক…" -+ "প্ৰশ্ন মচক" -+ "সন্ধান কৰিব খোজা প্ৰশ্ন" -+ "সন্ধান কৰক" -+ "প্ৰশ্ন দাখিল কৰক" -+ "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক" -+ "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" -+ "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" -+ "সংকুচিত কৰক" -+ "অনুসন্ধান কৰক" -+ "৯৯৯+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml -new file mode 100644 -index 0000000..8bbbd5b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Evə naviqasiya et" -+ "Yuxarı get" -+ "Digər variantlar" -+ "Hazırdır" -+ "Hamısına baxın" -+ "Tətbiq seçin" -+ "DEAKTİV" -+ "AKTİV" -+ "Alt+" -+ "Ctrl+" -+ "silin" -+ "daxil olun" -+ "Funksiya+" -+ "Meta+" -+ "Shift+" -+ "kosmos" -+ "Sym+" -+ "Menyu+" -+ "Axtarış..." -+ "Sorğunu təmizlə" -+ "Axtarış sorğusu" -+ "Axtarış" -+ "Sorğunu göndərin" -+ "Səsli axtarış" -+ "Bununla paylaşın" -+ "%s ilə paylaşın" -+ "Yığışdırın" -+ "Axtarış" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml -new file mode 100644 -index 0000000..77f07c2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Odlazak na Početnu" -+ "Kretanje nagore" -+ "Još opcija" -+ "Gotovo" -+ "Prikaži sve" -+ "Izbor aplikacije" -+ "ISKLJUČI" -+ "UKLJUČI" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "taster za razmak" -+ "Sym+" -+ "Menu+" -+ "Pretražite..." -+ "Brisanje upita" -+ "Upit za pretragu" -+ "Pretraga" -+ "Slanje upita" -+ "Glasovna pretraga" -+ "Deli sa" -+ "Deljenje sa aplikacijom %s" -+ "Skupi" -+ "Pretraži" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml -new file mode 100644 -index 0000000..a0019be ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Перайсці на галоўную старонку" -+ "Перайсці ўверх" -+ "Дадатковыя параметры" -+ "Гатова" -+ "Прагледзець усё" -+ "Выбраць праграму" -+ "ВЫКЛ." -+ "УКЛ." -+ "Alt +" -+ "Ctrl +" -+ "Delete" -+ "Enter" -+ "Fn +" -+ "Meta +" -+ "Shift +" -+ "Прабел" -+ "Sym +" -+ "Меню +" -+ "Пошук..." -+ "Выдалiць запыт" -+ "Запыт на пошук" -+ "Пошук" -+ "Адправіць запыт" -+ "Галасавы пошук" -+ "Абагуліць з" -+ "Абагуліць праз праграму %s" -+ "Згарнуць" -+ "Пошук" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml -new file mode 100644 -index 0000000..ce1cb44 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml -new file mode 100644 -index 0000000..b9e182a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "হোম এ নেভিগেট করুন" -+ "উপরের দিকে নেভিগেট করুন" -+ "আরও বিকল্প" -+ "সম্পন্ন হয়েছে" -+ "সবগুলো দেখুন" -+ "একটি অ্যাপ্লিকেশান বেছে নিন" -+ "বন্ধ" -+ "চালু" -+ "Alt+" -+ "Ctrl+" -+ "মুছুন" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "স্পেস" -+ "Sym+" -+ "মেনু+" -+ "অনুসন্ধান..." -+ "ক্যোয়ারী সাফ করুন" -+ "ক্যোয়ারী খুঁজুন" -+ "খুঁজুন" -+ "ক্যোয়ারী জমা দিন" -+ "ভয়েস অনুসন্ধান" -+ "এর সাথে শেয়ার করুন" -+ "%s এর সাথে শেয়ার করুন" -+ "সঙ্কুচিত করুন" -+ "খুঁজুন" -+ "৯৯৯+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml -new file mode 100644 -index 0000000..bc8630d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Vrati se na početnu stranicu" -+ "Navigiraj prema gore" -+ "Više opcija" -+ "Gotovo" -+ "Prikaži sve" -+ "Odaberite aplikaciju" -+ "ISKLJUČI" -+ "UKLJUČI" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "razmaknica" -+ "Sym+" -+ "Menu+" -+ "Pretraži..." -+ "Obriši upit" -+ "Pretraži upit" -+ "Traži" -+ "Pošalji upit" -+ "Glasovno pretraživanje" -+ "Dijeli sa" -+ "Dijeli koristeći aplikaciju %s" -+ "Skupi" -+ "Pretraži" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml -new file mode 100644 -index 0000000..833039e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navega a la pàgina d\'inici" -+ "Navega cap a dalt" -+ "Més opcions" -+ "Fet" -+ "Mostra\'ls tots" -+ "Selecciona una aplicació" -+ "DESACTIVAT" -+ "ACTIVAT" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml -new file mode 100644 -index 0000000..a5878ca ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Přejít na plochu" -+ "Přejít nahoru" -+ "Více možností" -+ "Hotovo" -+ "Zobrazit vše" -+ "Vybrat aplikaci" -+ "VYPNUTO" -+ "ZAPNUTO" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Shift+" -+ "mezerník" -+ "Sym+" -+ "Menu+" -+ "Vyhledat…" -+ "Smazat dotaz" -+ "Vyhledávací dotaz" -+ "Hledat" -+ "Odeslat dotaz" -+ "Hlasové vyhledávání" -+ "Sdílet pomocí" -+ "Sdílet s aplikací %s" -+ "Sbalit" -+ "Hledat" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml -new file mode 100644 -index 0000000..7ae28b4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Naviger hjem" -+ "Naviger op" -+ "Flere muligheder" -+ "Luk" -+ "Se alle" -+ "Vælg en app" -+ "FRA" -+ "TIL" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Shift+" -+ "mellemrum" -+ "Sym+" -+ "Menu+" -+ "Søg…" -+ "Ryd forespørgslen" -+ "Søgeforespørgsel" -+ "Søg" -+ "Indsend forespørgslen" -+ "Talesøgning" -+ "Del med" -+ "Del med %s" -+ "Skjul" -+ "Søg" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml -new file mode 100644 -index 0000000..d2f8510 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Zur Startseite" -+ "Nach oben" -+ "Weitere Optionen" -+ "Fertig" -+ "Alle ansehen" -+ "App auswählen" -+ "Aus" -+ "An" -+ "Alt +" -+ "Strg +" -+ "Löschen" -+ "Eingabetaste" -+ "Funktionstaste +" -+ "Meta-Taste +" -+ "Umschalttaste +" -+ "Leertaste +" -+ "Sym-Taste +" -+ "Menütaste +" -+ "Suchen…" -+ "Suchanfrage löschen" -+ "Suchanfrage" -+ "Suchen" -+ "Suchanfrage senden" -+ "Sprachsuche" -+ "Freigeben für" -+ "Mit %s teilen" -+ "Minimieren" -+ "Suchen" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml -new file mode 100644 -index 0000000..de7398c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml -new file mode 100644 -index 0000000..0b21ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml -new file mode 100644 -index 0000000..52e1a7d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml -new file mode 100644 -index 0000000..edb8524 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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 todo" -+ "Elige una aplicación." -+ "DESACTIVADO" -+ "ACTIVADO" -+ "Alt+" -+ "Ctrl+" -+ "borrar" -+ "intro" -+ "Función+" -+ "Meta+" -+ "Mayúscula+" -+ "espacio" -+ "Sym+" -+ "Menú+" -+ "Buscar…" -+ "Eliminar la consulta" -+ "Búsqueda" -+ "Búsqueda" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml -new file mode 100644 -index 0000000..d2265ad ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ir a la pantalla de inicio" -+ "Desplazarse hacia arriba" -+ "Más opciones" -+ "Listo" -+ "Ver todo" -+ "Seleccionar una aplicación" -+ "DESACTIVADO" -+ "ACTIVADO" -+ "Alt +" -+ "Ctrl +" -+ "Eliminar" -+ "Intro" -+ "Función +" -+ "Meta +" -+ "Mayús +" -+ "Espacio" -+ "Sym +" -+ "Menú +" -+ "Buscar…" -+ "Borrar consulta" -+ "Consulta" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml -new file mode 100644 -index 0000000..05be6e9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigeerimine avaekraanile" -+ "Navigeerimine üles" -+ "Rohkem valikuid" -+ "Valmis" -+ "Kuva kõik" -+ "Valige rakendus" -+ "VÄLJAS" -+ "SEES" -+ "Alt +" -+ "Ctrl +" -+ "kustutamisklahv" -+ "sisestusklahv" -+ "Funktsiooniklahv +" -+ "Meta +" -+ "Tõstuklahv +" -+ "tühik" -+ "Sym +" -+ "Menüü +" -+ "Otsige …" -+ "Päringu tühistamine" -+ "Otsingupäring" -+ "Otsing" -+ "Päringu esitamine" -+ "Häälotsing" -+ "Jagamine:" -+ "Jagamine rakendusega %s" -+ "Ahendamine" -+ "Otsing" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml -new file mode 100644 -index 0000000..8c09875 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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" -+ "DESAKTIBATUTA" -+ "AKTIBATUTA" -+ "Alt +" -+ "Ktrl +" -+ "Ezabatu" -+ "Sartu" -+ "Funtzioa +" -+ "Meta +" -+ "Maius +" -+ "Zuriunea" -+ "Sym +" -+ "Menua +" -+ "Bilatu…" -+ "Garbitu kontsulta" -+ "Bilaketa-kontsulta" -+ "Bilatu" -+ "Bidali kontsulta" -+ "Ahozko bilaketa" -+ "Partekatu hauekin" -+ "Partekatu %s aplikazioarekin" -+ "Tolestu" -+ "Bilatu" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml -new file mode 100644 -index 0000000..90b2898 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "پیمایش به صفحه اصلی" -+ "پیمایش به بالا" -+ "گزینه‌های بیشتر" -+ "تمام" -+ "مشاهده همه" -+ "انتخاب برنامه" -+ "خاموش" -+ "روشن" -+ "‎Alt+‎" -+ "‎Ctrl+‎" -+ "delete" -+ "enter" -+ "‎Function+‎" -+ "‎Meta+‎" -+ "‎Shift+‎" -+ "کلید فاصله" -+ "‎Sym+‎" -+ "منو+" -+ "جستجو…" -+ "پاک کردن عبارت جستجو" -+ "عبارت جستجو" -+ "جستجو" -+ "ارسال عبارت جستجو" -+ "جستجوی گفتاری" -+ "اشتراک‌گذاری با" -+ "اشتراک‌گذاری با %s" -+ "کوچک کردن" -+ "جستجو" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml -new file mode 100644 -index 0000000..75b02bb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Siirry etusivulle" -+ "Siirry ylös" -+ "Lisää" -+ "Valmis" -+ "Näytä kaikki" -+ "Valitse sovellus" -+ "POIS KÄYTÖSTÄ" -+ "KÄYTÖSSÄ" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Fn+" -+ "Meta+" -+ "Vaihto+" -+ "välilyönti" -+ "Sym+" -+ "Valikko+" -+ "Haku…" -+ "Tyhjennä kysely" -+ "Hakulauseke" -+ "Haku" -+ "Lähetä kysely" -+ "Puhehaku" -+ "Jakaminen:" -+ "Jaa sovelluksessa %s" -+ "Kutista" -+ "Haku" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml -new file mode 100644 -index 0000000..f71cf03 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Revenir à l\'accueil" -+ "Revenir en haut de la page" -+ "Plus d\'options" -+ "Terminé" -+ "Voir toutes les chaînes" -+ "Sélectionnez une application" -+ "DÉSACTIVÉ" -+ "ACTIVÉ" -+ "Alt+" -+ "Ctrl+" -+ "supprimer" -+ "entrée" -+ "Fonction+" -+ "Méta+" -+ "Maj+" -+ "espace" -+ "Sym+" -+ "Menu+" -+ "Recherche en cours..." -+ "Effacer la requête" -+ "Requête de recherche" -+ "Rechercher" -+ "Envoyer la requête" -+ "Recherche vocale" -+ "Partager" -+ "Partager avec %s" -+ "Réduire" -+ "Rechercher" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml -new file mode 100644 -index 0000000..2aee397 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Revenir à l\'accueil" -+ "Revenir en haut de la page" -+ "Plus d\'options" -+ "OK" -+ "Tout afficher" -+ "Sélectionner une application" -+ "DÉSACTIVÉ" -+ "ACTIVÉ" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml -new file mode 100644 -index 0000000..d0081c6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ir á páxina de inicio" -+ "Desprazarse cara arriba" -+ "Máis opcións" -+ "Feito" -+ "Ver todas" -+ "Escoller unha aplicación" -+ "DESACTIVAR" -+ "ACTIVAR" -+ "Alt +" -+ "Ctrl +" -+ "eliminar" -+ "Intro" -+ "Función +" -+ "Meta +" -+ "Maiús +" -+ "espazo" -+ "Sim +" -+ "Menú +" -+ "Buscar…" -+ "Borrar consulta" -+ "Consulta de busca" -+ "Buscar" -+ "Enviar consulta" -+ "Busca por voz" -+ "Compartir con" -+ "Compartir con %s" -+ "Contraer" -+ "Buscar" -+ ">999" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml -new file mode 100644 -index 0000000..0a3b83b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "હોમ પર નેવિગેટ કરો" -+ "ઉપર નૅવિગેટ કરો" -+ "વધુ વિકલ્પો" -+ "થઈ ગયું" -+ "બધું જુઓ" -+ "એક ઍપ્લિકેશન પસંદ કરો" -+ "બંધ" -+ "ચાલુ" -+ "Alt+" -+ "Ctrl+" -+ "ડિલીટ કરો" -+ "Enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "Spacebar" -+ "Sym+" -+ "મેનૂ+" -+ "શોધો…" -+ "ક્વેરી સાફ કરો" -+ "શોધ ક્વેરી" -+ "શોધો" -+ "ક્વેરી સબમિટ કરો" -+ "વૉઇસ શોધ" -+ "આની સાથે શેર કરો" -+ "%sની સાથે શેર કરો" -+ "સંકુચિત કરો" -+ "શોધો" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml -new file mode 100644 -index 0000000..e38bb90 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml -new file mode 100644 -index 0000000..d5a138e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml -new file mode 100644 -index 0000000..6576cb7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml -new file mode 100644 -index 0000000..2c3e6ae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Idi na početnu" -+ "Idi gore" -+ "Dodatne opcije" -+ "Gotovo" -+ "Prikaži sve" -+ "Odabir aplikacije" -+ "ISKLJUČENO" -+ "UKLJUČENO" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "razmaknica" -+ "Sym+" -+ "Menu+" -+ "Pretražite…" -+ "Izbriši upit" -+ "Upit za pretraživanje" -+ "Pretraživanje" -+ "Pošalji upit" -+ "Glasovno pretraživanje" -+ "Dijeljenje sa" -+ "Dijeli putem aplikacije %s" -+ "Sažmi" -+ "Pretraživanje" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml -new file mode 100644 -index 0000000..f980def ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Ugrás a főoldalra" -+ "Felfelé mozgatás" -+ "További lehetőségek" -+ "Kész" -+ "Összes megtekintése" -+ "Válasszon ki egy 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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml -new file mode 100644 -index 0000000..3247f9a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml -new file mode 100644 -index 0000000..314af7e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Navigasi ke beranda" -+ "Navigasi naik" -+ "Opsi lain" -+ "Selesai" -+ "Lihat semua" -+ "Pilih aplikasi" -+ "NONAKTIF" -+ "AKTIF" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "spasi" -+ "Sym+" -+ "Menu+" -+ "Telusuri..." -+ "Hapus kueri" -+ "Kueri penelusuran" -+ "Telusuri" -+ "Kirim kueri" -+ "Penelusuran suara" -+ "Bagikan dengan" -+ "Bagikan ke %s" -+ "Ciutkan" -+ "Telusuri" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml -new file mode 100644 -index 0000000..58321f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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+" -+ "delete" -+ "enter" -+ "Aðgerðarlykill+" -+ "Meta+" -+ "Shift+" -+ "bilslá" -+ "Sym+" -+ "Valmynd+" -+ "Leita…" -+ "Hreinsa fyrirspurn" -+ "Leitarfyrirspurn" -+ "Leita" -+ "Senda fyrirspurn" -+ "Raddleit" -+ "Deila með" -+ "Deila með %s" -+ "Minnka" -+ "Leita" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml -new file mode 100644 -index 0000000..48842b3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Vai alla home page" -+ "Vai in alto" -+ "Altre opzioni" -+ "Fine" -+ "Visualizza tutte" -+ "Scegli un\'applicazione" -+ "OFF" -+ "ON" -+ "ALT +" -+ "CTRL +" -+ "CANC" -+ "INVIO" -+ "FUNZIONE +" -+ "META +" -+ "MAIUSC +" -+ "barra spaziatrice" -+ "SYM +" -+ "MENU +" -+ "Cerca…" -+ "Cancella query" -+ "Query di ricerca" -+ "Cerca" -+ "Invia query" -+ "Ricerca vocale" -+ "Condividi con" -+ "Condividi tramite %s" -+ "Comprimi" -+ "Ricerca" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml -new file mode 100644 -index 0000000..ed74d57 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "נווט לדף הבית" -+ "נווט למעלה" -+ "עוד אפשרויות" -+ "בוצע" -+ "ראה הכל" -+ "בחר אפליקציה" -+ "כבוי" -+ "פועל" -+ "Alt+" -+ "Ctrl+‎" -+ "delete" -+ "Enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "מקש רווח" -+ "Sym+" -+ "תפריט+" -+ "חיפוש…" -+ "מחק שאילתה" -+ "שאילתת חיפוש" -+ "חיפוש" -+ "שלח שאילתה" -+ "חיפוש קולי" -+ "שתף עם" -+ "שתף עם %s" -+ "כווץ" -+ "חיפוש" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml -new file mode 100644 -index 0000000..6be4581 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml -new file mode 100644 -index 0000000..8e91c0a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "მთავარზე ნავიგაცია" -+ "ზემოთ ნავიგაცია" -+ "მეტი ვარიანტები" -+ "დასრულდა" -+ "ყველას ნახვა" -+ "აპის არჩევა" -+ "გამორთულია" -+ "ჩართულია" -+ "Alt+" -+ "Ctrl+" -+ "წაშლა" -+ "შეყვანა" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "Menu+" -+ "ძიება..." -+ "მოთხოვნის გასუფთავება" -+ "ძიების მოთხოვნა" -+ "ძიება" -+ "მოთხოვნის გადაგზავნა" -+ "ხმოვანი ძიება" -+ "გაზიარება:" -+ "გაუზიარეთ %s-ს" -+ "აკეცვა" -+ "ძიება" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml -new file mode 100644 -index 0000000..d9596d0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Негізгі бетте қозғалу" -+ "Жоғары қозғалу" -+ "Басқа опциялар" -+ "Дайын" -+ "Барлығын көру" -+ "Қолданбаны таңдау" -+ "ӨШІРУЛІ" -+ "ҚОСУЛЫ" -+ "Alt+" -+ "Ctrl+" -+ "delete" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "бос орын" -+ "Sym+" -+ "Mәзір+" -+ "Іздеу…" -+ "Сұрақты жою" -+ "Сұрақты іздеу" -+ "Іздеу" -+ "Сұрақты жіберу" -+ "Дауыс арқылы іздеу" -+ "Бөлісу" -+ "%s қолданбасымен бөлісу" -+ "Тасалау" -+ "Іздеу" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml -new file mode 100644 -index 0000000..57735d2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml -new file mode 100644 -index 0000000..1e2402b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml -new file mode 100644 -index 0000000..5e0d052 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "홈 탐색" -+ "위로 탐색" -+ "옵션 더보기" -+ "완료" -+ "전체 보기" -+ "앱 선택" -+ "사용 안함" -+ "사용" -+ "Alt+" -+ "Ctrl+" -+ "삭제" -+ "입력" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "스페이스바" -+ "Sym+" -+ "Menu+" -+ "검색..." -+ "검색어 삭제" -+ "검색어" -+ "검색" -+ "검색어 보내기" -+ "음성 검색" -+ "공유 대상" -+ "%s와(과) 공유" -+ "접기" -+ "검색" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml -new file mode 100644 -index 0000000..7a8bb7f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml -new file mode 100644 -index 0000000..a12899f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml -new file mode 100644 -index 0000000..cc236eb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml -new file mode 100644 -index 0000000..f85a197 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml -@@ -0,0 +1,62 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml -new file mode 100644 -index 0000000..7dad77f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml -@@ -0,0 +1,4 @@ -+ -+ -+ 0px -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml -new file mode 100644 -index 0000000..3691890 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml -@@ -0,0 +1,276 @@ -+ -+ -+ @color/secondary_text_default_material_light -+ 0dp -+ 0dp -+ 12dp -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml -new file mode 100644 -index 0000000..d4a514a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml -@@ -0,0 +1,15 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml -new file mode 100644 -index 0000000..d807aae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml -@@ -0,0 +1,38 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml -new file mode 100644 -index 0000000..8b28a46 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml -@@ -0,0 +1,18 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml -new file mode 100644 -index 0000000..1eabc08 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Điều hướng về trang chủ" -+ "Điều hướng lên trê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+" -+ "phím cách" -+ "Sym+" -+ "Menu+" -+ "Tìm kiếm…" -+ "Xóa truy vấn" -+ "Tìm kiếm truy vấn" -+ "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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml -new file mode 100644 -index 0000000..2d85812 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml -new file mode 100644 -index 0000000..deecc9e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml -new file mode 100644 -index 0000000..b499d2c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml -new file mode 100644 -index 0000000..68140f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml -new file mode 100644 -index 0000000..f533663 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml -new file mode 100644 -index 0000000..75f498a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/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/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml -new file mode 100644 -index 0000000..31e318d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml -@@ -0,0 +1,32 @@ -+ -+ -+ "Zulazulela ekhaya" -+ "Zulazulela phezulu" -+ "Izinketho eziningi" -+ "Kwenziwe" -+ "Buka konke" -+ "Khetha uhlelo lokusebenza" -+ "VALIWE" -+ "VULIWE" -+ "Alt+" -+ "Ctrl+" -+ "susa" -+ "enter" -+ "Function+" -+ "Meta+" -+ "Shift+" -+ "space" -+ "Sym+" -+ "Imenyu+" -+ "Iyasesha..." -+ "Sula inkinga" -+ "Umbuzo wosesho" -+ "Sesha" -+ "Hambisa umbuzo" -+ "Ukusesha ngezwi" -+ "Yabelana no-" -+ "Yabelana ne-%s" -+ "Goqa" -+ "Sesha" -+ "999+" -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml -new file mode 100644 -index 0000000..38478af ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml -@@ -0,0 +1,3553 @@ -+ -+ -+ -+ -+ -+ -+ -+ true -+ false -+ true -+ @android:color/black -+ #7fa87f -+ @android:color/black -+ @android:color/black -+ @color/material_deep_teal_200 -+ @color/material_deep_teal_500 -+ @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 -+ #ff009688 -+ #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 -+ @dimen/abc_action_bar_content_inset_material -+ 296dp -+ 4dp -+ 48dip -+ 320dip -+ 2dp -+ 2dp -+ 20dp -+ 3dp -+ 14sp -+ 14sp -+ 14sp -+ 12sp -+ 34sp -+ 45sp -+ 56sp -+ 112sp -+ 24sp -+ 22sp -+ 18sp -+ 14sp -+ 16sp -+ 14sp -+ 16sp -+ 16dp -+ 20sp -+ 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 -+ sans-serif -+ sans-serif-medium -+ sans-serif-medium -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif-light -+ sans-serif -+ sans-serif -+ sans-serif -+ sans-serif-medium -+ 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 -+ Button -+ 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 -+ Toggle 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 Field -+ Search -+ Spin Button -+ busy -+ collapsed -+ expanded -+ mixed -+ off -+ on -+ 999+ -+ Summary -+ Tab List -+ Timer -+ Tool Bar -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merger.xml -new file mode 100644 -index 0000000..3361a7b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merger.xml -@@ -0,0 +1,4275 @@ -+ -+@color/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+"#ffffffff#ff9e9e9e#1f000000#8a000000 -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ 24dp80dp64dp8dp8dp580dp16dp20dp"Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Alt+""Ctrl+""delete""enter""Funcție+""Meta+""Shift+""spațiu""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Interogare 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 patungo sa home""Mag-navigate pataas""Higit pang mga opsyon""Tapos na""Tingnan lahat""Pumili ng isang 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」分享""收合""搜尋""Vai alla home page""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""ALT +""CTRL +""CANC""INVIO""FUNZIONE +""META +""MAIUSC +""barra spaziatrice""SYM +""MENU +""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi tramite %s""Comprimi""Ricerca""Navega a la pàgina d\'inici""Navega cap a dalt""Més opcions""Fet""Mostra\'ls tots""Selecciona una aplicació""DESACTIVAT""ACTIVAT""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+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""Přejít na plochu""Přejít nahoru""Více možností""Hotovo""Zobrazit vše""Vybrat aplikaci""VYPNUTO""ZAPNUTO""Alt+""Ctrl+""delete""enter""Fn+""Meta+""Shift+""mezerník""Sym+""Menu+""Vyhledat…""Smazat dotaz""Vyhledávací dotaz""Hledat""Odeslat dotaz""Hlasové vyhledávání""Sdílet pomocí""Sdílet s aplikací %s""Sbalit""Hledat""转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %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""Σύμπτυξη""Αναζήτηση" -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml -new file mode 100644 -index 0000000..d85f67b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt -new file mode 100644 -index 0000000..7d78ef2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt -@@ -0,0 +1,10 @@ -+#Thu Aug 26 15:38:32 BRT 2021 -+base.2=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeLibDexDebugAndroidTest/classes_0.dex -+path.2=classes_0.dex -+base.1=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/classes.dex -+path.1=classes.dex -+base.0=/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/dex/debugAndroidTest/mergeExtDexDebugAndroidTest/classes.dex -+renamed.2=classes3.dex -+renamed.1=classes2.dex -+renamed.0=classes.dex -+path.0=classes.dex -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources -new file mode 100644 -index 0000000..309d46e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 -new file mode 100644 -index 0000000..c90a73c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAssets/merger.xml -index 53f2ee2..a6f8113 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAssets/merger.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugAssets/merger.xml -@@ -1,2 +1,2 @@ - -- -\ No newline at end of file -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties -index a8514b9..b38e102 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties -@@ -1 +1 @@ --#Thu Apr 08 15:50:15 CEST 2021 -+#Thu Aug 26 15:36:33 BRT 2021 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/merger.xml -index 33a8c76..e544853 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/merger.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageDebugResources/merger.xml -@@ -1,2 +1,2 @@ - -- -\ No newline at end of file -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseAssets/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseAssets/merger.xml -new file mode 100644 -index 0000000..2bac133 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseAssets/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties -new file mode 100644 -index 0000000..3b5a03d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties -@@ -0,0 +1 @@ -+#Fri Aug 27 10:12:22 BRT 2021 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/merger.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/merger.xml -new file mode 100644 -index 0000000..64f985c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/packageReleaseResources/merger.xml -@@ -0,0 +1,2 @@ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/release-mergeJavaRes/merge-state b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/release-mergeJavaRes/merge-state -new file mode 100644 -index 0000000..d5ff387 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/release-mergeJavaRes/merge-state differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/BuildConfig.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/BuildConfig.class -index c3bbc27..cbb785a 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/BuildConfig.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/BuildConfig.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class -index 71fb514..59cc7e0 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class -index 86b8daa..62c2ebe 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class -index cd1a354..10f8207 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class -index a831a85..bd0b14e 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class -index 4d055b4..ce409f0 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class -index 9fe31f7..6b42487 100644 -Binary files a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debug/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debugAndroidTest/classes/com/mvcpscrollviewmanager/test/BuildConfig.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debugAndroidTest/classes/com/mvcpscrollviewmanager/test/BuildConfig.class -new file mode 100644 -index 0000000..deed1cc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/debugAndroidTest/classes/com/mvcpscrollviewmanager/test/BuildConfig.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/BuildConfig.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/BuildConfig.class -new file mode 100644 -index 0000000..2fba7ad -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/BuildConfig.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class -new file mode 100644 -index 0000000..59cc7e0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class -new file mode 100644 -index 0000000..62c2ebe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class -new file mode 100644 -index 0000000..10f8207 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1$2.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class -new file mode 100644 -index 0000000..bd0b14e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule$1.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class -new file mode 100644 -index 0000000..ce409f0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerModule.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerPackage.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerPackage.class -new file mode 100644 -index 0000000..19df090 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/MvcpScrollViewManagerPackage.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class -new file mode 100644 -index 0000000..6b42487 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/javac/release/classes/com/mvcpscrollviewmanager/ScrollViewUIHolders.class differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/debug/AndroidManifest.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/debug/AndroidManifest.xml -index cdc9e35..db88a20 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/debug/AndroidManifest.xml -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/debug/AndroidManifest.xml -@@ -5,7 +5,7 @@ - android:versionName="1.0" > - - - - -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/release/AndroidManifest.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/release/AndroidManifest.xml -new file mode 100644 -index 0000000..db88a20 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/library_manifest/release/AndroidManifest.xml -@@ -0,0 +1,11 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/local_only_symbol_list/release/R-def.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/local_only_symbol_list/release/R-def.txt -new file mode 100644 -index 0000000..78ac5b8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/local_only_symbol_list/release/R-def.txt -@@ -0,0 +1,2 @@ -+R_DEF: Internal format may change without notice -+local -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt -index d79ada9..b787a35 100644 ---- a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt -@@ -5,9 +5,9 @@ - 5 android:versionName="1.0" > - 6 - 7 /Users/vishalnarkhede/projects/flat-list-mvcp/android/src/main/AndroidManifest.xml -+8 android:minSdkVersion="21" -+8-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/src/main/AndroidManifest.xml - 9 android:targetSdkVersion="30" /> --9-->/Users/vishalnarkhede/projects/flat-list-mvcp/android/src/main/AndroidManifest.xml -+9-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/src/main/AndroidManifest.xml - 10 - 11 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt -new file mode 100644 -index 0000000..e0f9e79 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt -@@ -0,0 +1,36 @@ -+1 -+2 -+4 -+5 /Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:5:5-74 -+6 android:minSdkVersion="21" -+6-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:5:15-41 -+7 android:targetSdkVersion="30" /> -+7-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:5:42-71 -+8 -+9 /Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:11:5-15:80 -+10 android:name="android.test.InstrumentationTestRunner" -+10-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:11:22-75 -+11 android:functionalTest="false" -+11-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:14:22-52 -+12 android:handleProfiling="false" -+12-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:13:22-53 -+13 android:label="Tests for com.mvcpscrollviewmanager.test" -+13-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:15:22-78 -+14 android:targetPackage="com.mvcpscrollviewmanager.test" /> -+14-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:12:22-76 -+15 -+16 /Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:7:5-9:19 -+17 android:appComponentFactory="androidx.core.app.CoreComponentFactory" -+17-->[androidx.core:core:1.0.1] /Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/AndroidManifest.xml:22:18-86 -+18 android:debuggable="true" > -+18-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:7:18-43 -+19 -+19-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:8:9-60 -+19-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/tmp/manifest/androidTest/debug/manifestMerger15205363093802345803.xml:8:23-57 -+20 -+21 -+22 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt -new file mode 100644 -index 0000000..b787a35 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt -@@ -0,0 +1,13 @@ -+1 -+2 -+6 -+7 /Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/src/main/AndroidManifest.xml -+9 android:targetSdkVersion="30" /> -+9-->/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/src/main/AndroidManifest.xml -+10 -+11 -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/debugAndroidTest/out.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/debugAndroidTest/out.jar -new file mode 100644 -index 0000000..a30ad0b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/debugAndroidTest/out.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/release/out.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/release/out.jar -new file mode 100644 -index 0000000..15cb0ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_java_res/release/out.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so -new file mode 100644 -index 0000000..1b6a320 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libc++_shared.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so -new file mode 100644 -index 0000000..92a4572 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfb.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so -new file mode 100644 -index 0000000..73fccd5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfbjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_futures.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_futures.so -new file mode 100644 -index 0000000..18ac20b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_futures.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_json.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_json.so -new file mode 100644 -index 0000000..cef1b28 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libfolly_json.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so -new file mode 100644 -index 0000000..9c1b02c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so -new file mode 100644 -index 0000000..c7c0a96 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libglog_init.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-debug.so -new file mode 100644 -index 0000000..2a50e2a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-release.so -new file mode 100644 -index 0000000..f145d10 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-common-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-debug.so -new file mode 100644 -index 0000000..92acb5d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-release.so -new file mode 100644 -index 0000000..f64d612 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-executor-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-inspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-inspector.so -new file mode 100644 -index 0000000..1981f07 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libhermes-inspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so -new file mode 100644 -index 0000000..8375aaf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libimagepipeline.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so -new file mode 100644 -index 0000000..ee6ff5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjscexecutor.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so -new file mode 100644 -index 0000000..7ac737b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsijniprofiler.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so -new file mode 100644 -index 0000000..348f20f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libjsinspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so -new file mode 100644 -index 0000000..bcc0128 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-filters.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so -new file mode 100644 -index 0000000..5a186ef -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libnative-imagetranscoder.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_reactandroidspec.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_reactandroidspec.so -new file mode 100644 -index 0000000..72720a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_codegen_reactandroidspec.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so -new file mode 100644 -index 0000000..a2bda4d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreact_nativemodule_core.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so -new file mode 100644 -index 0000000..2bedfbf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeblob.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so -new file mode 100644 -index 0000000..d001162 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativejni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeutilsjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeutilsjni.so -new file mode 100644 -index 0000000..813ac9f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactnativeutilsjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so -new file mode 100644 -index 0000000..e9738e0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libreactperfloggerjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so -new file mode 100644 -index 0000000..d023f5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libturbomodulejsijni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so -new file mode 100644 -index 0000000..c278387 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/arm64-v8a/libyoga.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so -new file mode 100644 -index 0000000..a64fb01 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libc++_shared.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so -new file mode 100644 -index 0000000..d9193ff -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfb.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so -new file mode 100644 -index 0000000..0a0dfc6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfbjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_futures.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_futures.so -new file mode 100644 -index 0000000..2d15382 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_futures.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_json.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_json.so -new file mode 100644 -index 0000000..ded9b0b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libfolly_json.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so -new file mode 100644 -index 0000000..6801673 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so -new file mode 100644 -index 0000000..a0b9522 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libglog_init.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-debug.so -new file mode 100644 -index 0000000..c678458 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-release.so -new file mode 100644 -index 0000000..1212076 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-common-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-debug.so -new file mode 100644 -index 0000000..dc8f90a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-release.so -new file mode 100644 -index 0000000..34195f2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-executor-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-inspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-inspector.so -new file mode 100644 -index 0000000..711d9d7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libhermes-inspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so -new file mode 100644 -index 0000000..a01c8c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libimagepipeline.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so -new file mode 100644 -index 0000000..5c62e5b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjscexecutor.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so -new file mode 100644 -index 0000000..881f239 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsijniprofiler.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so -new file mode 100644 -index 0000000..e71614b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libjsinspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so -new file mode 100644 -index 0000000..b4a80cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-filters.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so -new file mode 100644 -index 0000000..25868e7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libnative-imagetranscoder.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_reactandroidspec.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_reactandroidspec.so -new file mode 100644 -index 0000000..1640165 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_codegen_reactandroidspec.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so -new file mode 100644 -index 0000000..d274a10 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreact_nativemodule_core.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so -new file mode 100644 -index 0000000..b1d7838 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeblob.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so -new file mode 100644 -index 0000000..5c515c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativejni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeutilsjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeutilsjni.so -new file mode 100644 -index 0000000..1a21000 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactnativeutilsjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so -new file mode 100644 -index 0000000..2ab2300 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libreactperfloggerjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so -new file mode 100644 -index 0000000..ddf728d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libturbomodulejsijni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so -new file mode 100644 -index 0000000..3dc4e21 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/armeabi-v7a/libyoga.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so -new file mode 100644 -index 0000000..7e9d748 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libc++_shared.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so -new file mode 100644 -index 0000000..ec549b8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfb.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so -new file mode 100644 -index 0000000..e8187bf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfbjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_futures.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_futures.so -new file mode 100644 -index 0000000..5ab22ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_futures.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_json.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_json.so -new file mode 100644 -index 0000000..5da69c4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libfolly_json.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so -new file mode 100644 -index 0000000..d557551 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so -new file mode 100644 -index 0000000..4817f31 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libglog_init.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-debug.so -new file mode 100644 -index 0000000..0c95e68 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-release.so -new file mode 100644 -index 0000000..845a385 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-common-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-debug.so -new file mode 100644 -index 0000000..b431c0f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-release.so -new file mode 100644 -index 0000000..88dc869 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-executor-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-inspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-inspector.so -new file mode 100644 -index 0000000..b6233af -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libhermes-inspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so -new file mode 100644 -index 0000000..97780b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libimagepipeline.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so -new file mode 100644 -index 0000000..9f6b05c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjscexecutor.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so -new file mode 100644 -index 0000000..ff9041b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsijniprofiler.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so -new file mode 100644 -index 0000000..3a1b591 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libjsinspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so -new file mode 100644 -index 0000000..1adf893 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-filters.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so -new file mode 100644 -index 0000000..4de9c60 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libnative-imagetranscoder.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_reactandroidspec.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_reactandroidspec.so -new file mode 100644 -index 0000000..de863ca -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_codegen_reactandroidspec.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so -new file mode 100644 -index 0000000..d7b5732 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreact_nativemodule_core.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so -new file mode 100644 -index 0000000..043619e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeblob.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so -new file mode 100644 -index 0000000..ea0b4db -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativejni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeutilsjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeutilsjni.so -new file mode 100644 -index 0000000..fee37ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactnativeutilsjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so -new file mode 100644 -index 0000000..81effd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libreactperfloggerjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so -new file mode 100644 -index 0000000..e24691f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libturbomodulejsijni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so -new file mode 100644 -index 0000000..9ca6478 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86/libyoga.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so -new file mode 100644 -index 0000000..ee3c65a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libc++_shared.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so -new file mode 100644 -index 0000000..e1257cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfb.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so -new file mode 100644 -index 0000000..65bb4ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfbjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_futures.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_futures.so -new file mode 100644 -index 0000000..be4b4f5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_futures.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_json.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_json.so -new file mode 100644 -index 0000000..16d5b45 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libfolly_json.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so -new file mode 100644 -index 0000000..9c6a929 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so -new file mode 100644 -index 0000000..f389e36 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libglog_init.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-debug.so -new file mode 100644 -index 0000000..b471f79 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-release.so -new file mode 100644 -index 0000000..881b30e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-common-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-debug.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-debug.so -new file mode 100644 -index 0000000..1f3cf91 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-debug.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-release.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-release.so -new file mode 100644 -index 0000000..d68130c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-executor-release.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-inspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-inspector.so -new file mode 100644 -index 0000000..406963d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libhermes-inspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so -new file mode 100644 -index 0000000..19e7c8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libimagepipeline.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so -new file mode 100644 -index 0000000..d99f0b4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjscexecutor.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so -new file mode 100644 -index 0000000..3a92291 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsijniprofiler.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so -new file mode 100644 -index 0000000..39d83de -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libjsinspector.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so -new file mode 100644 -index 0000000..7c16650 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-filters.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so -new file mode 100644 -index 0000000..071b767 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libnative-imagetranscoder.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_reactandroidspec.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_reactandroidspec.so -new file mode 100644 -index 0000000..42caba6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_codegen_reactandroidspec.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so -new file mode 100644 -index 0000000..e059b90 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreact_nativemodule_core.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so -new file mode 100644 -index 0000000..af4bbf4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeblob.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so -new file mode 100644 -index 0000000..b982b21 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativejni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeutilsjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeutilsjni.so -new file mode 100644 -index 0000000..aa0bf94 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactnativeutilsjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so -new file mode 100644 -index 0000000..e060913 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libreactperfloggerjni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so -new file mode 100644 -index 0000000..519f08e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libturbomodulejsijni.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so -new file mode 100644 -index 0000000..b5612bb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_native_libs/debugAndroidTest/out/lib/x86_64/libyoga.so differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/debug.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/debug.json -new file mode 100644 -index 0000000..120a2db ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/debug.json -@@ -0,0 +1,3195 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", -+ "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", -+ "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", -+ "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", -+ "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2898", -+ "endColumns": "100", -+ "endOffsets": "2994" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", -+ "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", -+ "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2744", -+ "endColumns": "100", -+ "endOffsets": "2840" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v18/values-v18.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "48", -+ "endOffsets": "99" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", -+ "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", -+ "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-large-v4/values-large-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10", -+ "startColumns": "4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,114,185,256,326,396,464,532,636", -+ "endColumns": "58,70,70,69,69,67,67,103,115", -+ "endOffsets": "109,180,251,321,391,459,527,631,747" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", -+ "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", -+ "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v21_values-watch-v21.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v21/values-watch-v21.xml", -+ "from": { -+ "startLines": "2,6,10", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,271,499", -+ "endLines": "5,9,13", -+ "endColumns": "12,12,12", -+ "endOffsets": "266,494,724" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", -+ "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", -+ "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2856", -+ "endColumns": "100", -+ "endOffsets": "2952" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", -+ "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", -+ "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2961", -+ "endColumns": "100", -+ "endOffsets": "3057" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9", -+ "startColumns": "4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,193,263,337,413,472,543", -+ "endColumns": "68,68,69,73,75,58,70,67", -+ "endOffsets": "119,188,258,332,408,467,538,606" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", -+ "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", -+ "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2912", -+ "endColumns": "100", -+ "endOffsets": "3008" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-night-v8/values-night-v8.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8", -+ "startColumns": "4,4,4,4,4,4,4", -+ "startOffsets": "55,125,209,293,389,491,593", -+ "endColumns": "69,83,83,95,101,101,93", -+ "endOffsets": "120,204,288,384,486,588,682" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", -+ "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", -+ "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2900", -+ "endColumns": "100", -+ "endOffsets": "2996" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-land/values-land.xml", -+ "from": { -+ "startLines": "2,3,4", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,125,196", -+ "endColumns": "69,70,67", -+ "endOffsets": "120,191,259" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", -+ "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", -+ "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2988", -+ "endColumns": "100", -+ "endOffsets": "3084" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", -+ "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", -+ "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", -+ "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", -+ "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2938", -+ "endColumns": "100", -+ "endOffsets": "3034" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ldltr-v21/values-ldltr-v21.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "112", -+ "endOffsets": "163" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-or_values-or.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", -+ "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", -+ "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v24/values-v24.xml", -+ "from": { -+ "startLines": "2,3", -+ "startColumns": "4,4", -+ "startOffsets": "55,212", -+ "endColumns": "156,134", -+ "endOffsets": "207,342" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", -+ "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", -+ "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2918", -+ "endColumns": "100", -+ "endOffsets": "3014" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", -+ "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", -+ "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v23/values-v23.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,19,32,33,34,35,36", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", -+ "endLines": "2,3,4,5,18,31,32,33,34,35,36", -+ "endColumns": "134,134,74,86,12,12,126,104,114,106,112", -+ "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2839", -+ "endColumns": "100", -+ "endOffsets": "2935" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", -+ "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", -+ "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "3076", -+ "endColumns": "100", -+ "endOffsets": "3172" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", -+ "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", -+ "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2753", -+ "endColumns": "100", -+ "endOffsets": "2849" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v28_values-v28.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v28/values-v28.xml", -+ "from": { -+ "startLines": "2,3,4,8", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,447", -+ "endLines": "2,3,7,11", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,442,684" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2881", -+ "endColumns": "100", -+ "endOffsets": "2977" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", -+ "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", -+ "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rCA_values-en-rCA.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", -+ "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", -+ "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2939", -+ "endColumns": "100", -+ "endOffsets": "3035" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rXC_values-en-rXC.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", -+ "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", -+ "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "202", -+ "endOffsets": "253" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "5682", -+ "endColumns": "202", -+ "endOffsets": "5880" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", -+ "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", -+ "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", -+ "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", -+ "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,13", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,354,470,596,722,850,1022", -+ "endLines": "2,3,4,5,6,7,8,9,12,17", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" -+ }, -+ "to": { -+ "startLines": "2,3,4,5,263,264,265,266,267,270", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", -+ "endLines": "2,3,4,5,263,264,265,266,269,274", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" -+ }, -+ "to": { -+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", -+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", -+ "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", -+ "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2844", -+ "endColumns": "100", -+ "endOffsets": "2940" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", -+ "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", -+ "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", -+ "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", -+ "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2948", -+ "endColumns": "100", -+ "endOffsets": "3044" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", -+ "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", -+ "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2876", -+ "endColumns": "100", -+ "endOffsets": "2972" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2921", -+ "endColumns": "100", -+ "endOffsets": "3017" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", -+ "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", -+ "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", -+ "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", -+ "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2964", -+ "endColumns": "100", -+ "endOffsets": "3060" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v20_values-watch-v20.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v20/values-watch-v20.xml", -+ "from": { -+ "startLines": "2,5,8", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,214,385", -+ "endLines": "4,7,10", -+ "endColumns": "12,12,12", -+ "endOffsets": "209,380,553" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", -+ "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", -+ "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", -+ "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", -+ "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2771", -+ "endColumns": "100", -+ "endOffsets": "2867" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", -+ "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", -+ "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2832", -+ "endColumns": "100", -+ "endOffsets": "2928" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", -+ "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", -+ "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", -+ "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", -+ "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", -+ "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", -+ "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2845", -+ "endColumns": "100", -+ "endOffsets": "2941" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2884", -+ "endColumns": "100", -+ "endOffsets": "2980" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", -+ "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", -+ "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2909", -+ "endColumns": "100", -+ "endOffsets": "3005" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", -+ "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", -+ "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", -+ "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", -+ "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2925", -+ "endColumns": "100", -+ "endOffsets": "3021" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", -+ "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", -+ "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2826", -+ "endColumns": "100", -+ "endOffsets": "2922" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", -+ "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", -+ "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2901", -+ "endColumns": "100", -+ "endOffsets": "2997" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "65", -+ "endOffsets": "116" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "5", -+ "endColumns": "12", -+ "endOffsets": "223" -+ }, -+ "to": { -+ "startLines": "3", -+ "startColumns": "4", -+ "startOffsets": "121", -+ "endLines": "6", -+ "endColumns": "12", -+ "endOffsets": "289" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", -+ "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", -+ "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2978", -+ "endColumns": "100", -+ "endOffsets": "3074" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2907", -+ "endColumns": "100", -+ "endOffsets": "3003" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", -+ "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", -+ "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", -+ "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", -+ "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2756", -+ "endColumns": "100", -+ "endOffsets": "2852" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-h720dp-v13/values-h720dp-v13.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "66", -+ "endOffsets": "117" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v22/values-v22.xml", -+ "from": { -+ "startLines": "2,3,4,9", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,553", -+ "endLines": "2,3,8,13", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,548,896" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", -+ "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", -+ "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", -+ "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", -+ "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-port/values-port.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "55", -+ "endOffsets": "106" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-xlarge-v4/values-xlarge-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,126,197,267,337,405", -+ "endColumns": "70,70,69,69,67,67", -+ "endOffsets": "121,192,262,332,400,468" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", -+ "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", -+ "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v26/values-v26.xml", -+ "from": { -+ "startLines": "2,3,4,8,12,16", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,130,217,431,657,896", -+ "endLines": "2,3,7,11,15,16", -+ "endColumns": "74,86,12,12,12,92", -+ "endOffsets": "125,212,426,652,891,984" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", -+ "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", -+ "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2836", -+ "endColumns": "100", -+ "endOffsets": "2932" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v25/values-v25.xml", -+ "from": { -+ "startLines": "2,3,4,6", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,126,209,308", -+ "endLines": "2,3,5,7", -+ "endColumns": "70,82,12,12", -+ "endOffsets": "121,204,303,414" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2979", -+ "endColumns": "100", -+ "endOffsets": "3075" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", -+ "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", -+ "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", -+ "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", -+ "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", -+ "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", -+ "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2860", -+ "endColumns": "100", -+ "endOffsets": "2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", -+ "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", -+ "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", -+ "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", -+ "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2913", -+ "endColumns": "100", -+ "endOffsets": "3009" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2746", -+ "endColumns": "100", -+ "endOffsets": "2842" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", -+ "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", -+ "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", -+ "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", -+ "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", -+ "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", -+ "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2817", -+ "endColumns": "100", -+ "endOffsets": "2913" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2889", -+ "endColumns": "100", -+ "endOffsets": "2985" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", -+ "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", -+ "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2965", -+ "endColumns": "100", -+ "endOffsets": "3061" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", -+ "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", -+ "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2872", -+ "endColumns": "100", -+ "endOffsets": "2968" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", -+ "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", -+ "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v17/values-v17.xml", -+ "from": { -+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", -+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", -+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", -+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", -+ "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", -+ "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2946", -+ "endColumns": "100", -+ "endOffsets": "3042" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hdpi-v4/values-hdpi-v4.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "6", -+ "endColumns": "13", -+ "endOffsets": "327" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", -+ "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", -+ "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", -+ "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", -+ "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", -+ "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", -+ "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2892", -+ "endColumns": "100", -+ "endOffsets": "2988" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", -+ "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", -+ "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2891", -+ "endColumns": "100", -+ "endOffsets": "2987" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", -+ "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", -+ "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2899", -+ "endColumns": "100", -+ "endOffsets": "2995" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2905", -+ "endColumns": "100", -+ "endOffsets": "3001" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", -+ "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", -+ "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", -+ "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", -+ "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,74,78,81,84,88,92,95,98,99,100,109,116,123,126,129,132,138", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "100,163,226,277,325,374,422,471,520,563,617,665,729,798,871,946,1069,1165,1254,1362,1479,1599,1719,1821,1924,2035,2142,2245,2356,2525,2693,2810,2914,3027,3183,3291,3404,3495,3606,3775,3873,4000,4125,4220,4327,4407,4483,4556,4643,4714,4785,4863,4943,5029,5113,5185,5267,5348,5432,5509,5596,5681,5760,5835,5908,5985,6063,6136,6214,6462,6710,6913,7104,7306,7512,7713,7902,7928,7963,8501,8919,9297,9474,9653,9836,10201", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,87,91,94,97,98,99,108,115,122,125,128,131,137,147", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "158,221,272,320,369,417,466,515,558,612,660,724,793,866,941,1064,1160,1249,1357,1474,1594,1714,1816,1919,2030,2137,2240,2351,2520,2688,2805,2909,3022,3178,3286,3399,3490,3601,3770,3868,3995,4120,4215,4322,4402,4478,4551,4638,4709,4780,4858,4938,5024,5108,5180,5262,5343,5427,5504,5591,5676,5755,5830,5903,5980,6058,6131,6209,6457,6705,6908,7099,7301,7507,7708,7897,7923,7958,8496,8914,9292,9469,9648,9831,10196,10637" -+ }, -+ "to": { -+ "startLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,324,328,1392,1395,1398,1402,1599,1602,1678,1708,1709,1718,1725,1732,1735,1738,1741,1853", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "1985,2048,12970,13021,13069,13118,13166,13215,13669,14062,14116,14407,14471,17368,17441,17516,17639,17735,17824,17932,18049,18169,18289,18391,18494,18605,18712,18815,18926,19095,19263,19380,19484,19597,19753,19861,19974,20065,20176,20345,20443,20570,20695,20790,20897,20977,21053,21126,21213,21284,21355,21433,21513,21599,21683,21755,21837,21971,22055,22132,22219,22304,22383,22458,22602,22679,22757,22830,23350,23598,91773,91976,92167,92369,106058,106259,113348,115530,115565,116103,116521,116899,117076,117255,117438,126329", -+ "endLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,327,331,1394,1397,1401,1405,1601,1604,1678,1708,1717,1724,1731,1734,1737,1740,1746,1862", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "2043,2106,13016,13064,13113,13161,13210,13259,13707,14111,14159,14466,14535,17436,17511,17634,17730,17819,17927,18044,18164,18284,18386,18489,18600,18707,18810,18921,19090,19258,19375,19479,19592,19748,19856,19969,20060,20171,20340,20438,20565,20690,20785,20892,20972,21048,21121,21208,21279,21350,21428,21508,21594,21678,21750,21832,21913,22050,22127,22214,22299,22378,22453,22526,22674,22752,22825,22903,23593,23841,91971,92162,92364,92570,106254,106443,113369,115560,116098,116516,116894,117071,117250,117433,117798,126765" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/c3903e74c0a2f78a9ce6b238f654896f/jetified-drawee-2.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,141", -+ "startColumns": "4,4", -+ "startOffsets": "55,6070", -+ "endLines": "140,231", -+ "endColumns": "22,22", -+ "endOffsets": "6065,9761" -+ }, -+ "to": { -+ "startLines": "2749,3217", -+ "startColumns": "4,4", -+ "startOffsets": "175950,198373", -+ "endLines": "2887,3307", -+ "endColumns": "22,22", -+ "endOffsets": "181960,202064" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" -+ }, -+ "to": { -+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,332,340,341,345,349,353,358,364,371,375,379,384,388,392,396,400,404,408,414,418,424,428,434,438,443,447,450,454,460,464,470,474,480,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,822,848,1017,1043,1074,1082,1088,1102,1124,1129,1134,1144,1153,1162,1166,1173,1181,1188,1189,1198,1201,1204,1208,1212,1216,1219,1220,1224,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1386,1387,1406,1464,1523,1524,1534,1543,1544,1546,1550,1553,1556,1559,1562,1565,1568,1571,1575,1578,1581,1584,1588,1591,1595,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1627,1629,1630,1631,1632,1633,1634,1635,1636,1638,1639,1641,1642,1644,1646,1647,1649,1650,1651,1652,1653,1654,1656,1657,1658,1659,1660,1672,1674,1676,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1693,1694,1695,1696,1697,1698,1700,1704,1747,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1863,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2531,2656,2932,2968,2974,2980,3003,3144,3164,3170,3174,3180,3308,3320,3347,3352,3418,3433,3498,3517,3543", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2111,2185,2260,2325,2391,2451,2512,2584,2657,2724,2792,2851,2910,2969,3028,3087,3141,3195,3248,3302,3356,3410,3596,3670,3749,3822,3896,3967,4039,4111,4184,4241,4299,4372,4446,4520,4595,4667,4740,4810,4881,4941,5002,5071,5140,5210,5284,5360,5424,5501,5577,5654,5719,5788,5865,5940,6009,6077,6154,6220,6281,6378,6443,6512,6611,6682,6741,6799,6856,6915,6979,7050,7122,7194,7266,7338,7405,7473,7541,7600,7663,7727,7817,7908,7968,8034,8101,8167,8237,8301,8354,8467,8525,8588,8653,8718,8793,8866,8938,8987,9048,9109,9170,9232,9296,9360,9424,9489,9552,9612,9673,9739,9798,9858,9920,9991,10051,10607,10693,10780,10870,10957,11045,11127,11210,11300,12369,12421,12479,12524,12590,12654,12711,12768,13264,13321,13369,13418,13469,13573,13620,13712,14030,14164,14228,14290,14350,14610,14684,14754,14832,14886,14956,15041,15089,15135,15206,15284,15362,15434,15508,15582,15656,15736,15809,15878,15950,16027,16088,16151,16217,16281,16352,16415,16480,16544,16605,16666,16718,16791,16865,16934,17009,17083,17157,17298,21918,22908,22986,23076,23164,23260,23846,24428,24517,24764,25045,25297,25582,25975,26452,26674,26896,27172,27399,27629,27859,28089,28319,28546,28965,29191,29616,29846,30274,30493,30776,30984,31115,31342,31768,31993,32420,32641,33066,33186,33462,33763,34087,34378,34692,34829,34960,35065,35307,35474,35678,35886,36157,36269,36381,36486,36603,36817,36963,37103,37189,37537,37625,37871,38289,38538,38620,38718,39335,39435,39687,40111,40366,40460,40549,40786,42838,43080,43182,43435,45619,56340,57856,68676,70204,71961,72587,73007,74068,75333,75589,75825,76372,76866,77471,77669,78249,78813,79188,79306,79844,80001,80197,80470,80726,80896,81037,81101,81383,81669,82345,82609,82947,83300,83394,83580,83886,84148,84273,84400,84639,84850,84969,85162,85339,85794,85975,86097,86356,86469,86656,86758,86865,86994,87269,87777,88273,89150,89444,90014,90163,90895,91067,91403,91495,92575,96919,101406,101468,102098,102712,102803,102916,103145,103305,103457,103628,103794,103963,104130,104293,104536,104706,104879,105050,105324,105523,105728,106448,106532,106628,106724,106822,106922,107024,107126,107228,107330,107432,107532,107628,107740,107869,107992,108123,108254,108352,108466,108560,108700,108834,108930,109042,109142,109258,109354,109466,109566,109706,109842,110006,110136,110294,110444,110585,110729,110864,110976,111126,111254,111382,111518,111650,111780,111910,112022,112920,113066,113210,113374,113440,113530,113606,113710,113800,113902,114010,114118,114218,114298,114390,114488,114598,114676,114782,114874,114978,115088,115210,115373,117803,117883,117983,118073,118183,118277,118383,118475,118575,118687,118801,118917,119033,119127,119241,119353,119455,119575,119697,119779,119883,120003,120129,120227,120321,120409,120521,120637,120759,120871,121046,121162,121248,121340,121452,121576,121643,121769,121837,121965,122109,122237,122306,122401,122516,122629,122728,122837,122948,123059,123160,123265,123365,123495,123586,123709,123803,123915,124001,124105,124201,124289,124407,124511,124615,124741,124829,124937,125037,125127,125237,125321,125423,125507,125561,125625,125731,125841,125925,126770,131914,132032,132147,132279,132994,133686,134203,135850,136235,136832,138431,139964,140352,142659,162177,162735,169946,184102,186115,186377,186733,187563,194345,195479,195773,195996,196323,202069,202717,204350,204620,208471,209072,212881,214096,215505", -+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,339,340,344,348,352,357,363,370,374,378,383,387,391,395,399,403,407,413,417,423,427,433,437,442,446,449,453,459,463,469,473,479,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,821,847,1016,1042,1073,1081,1087,1101,1123,1128,1133,1143,1152,1161,1165,1172,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1223,1227,1237,1242,1249,1255,1256,1259,1263,1268,1270,1272,1275,1278,1280,1284,1287,1294,1297,1300,1304,1306,1310,1312,1314,1316,1320,1328,1336,1348,1354,1363,1366,1377,1380,1385,1386,1391,1463,1522,1523,1533,1542,1543,1545,1549,1552,1555,1558,1561,1564,1567,1570,1574,1577,1580,1583,1587,1590,1594,1598,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1626,1628,1629,1630,1631,1632,1633,1634,1635,1637,1638,1640,1641,1643,1645,1646,1648,1649,1650,1651,1652,1653,1655,1656,1657,1658,1659,1660,1673,1675,1677,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1692,1693,1694,1695,1696,1697,1699,1703,1707,1747,1748,1749,1750,1751,1752,1753,1755,1757,1759,1761,1763,1764,1765,1766,1768,1770,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1786,1787,1788,1789,1791,1793,1794,1796,1797,1799,1801,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1819,1821,1822,1823,1824,1825,1827,1829,1831,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1945,1948,1951,1954,1968,1979,1989,2016,2023,2034,2064,2091,2100,2137,2518,2523,2556,2673,2967,2973,2979,3002,3143,3163,3169,3173,3179,3216,3319,3346,3351,3417,3432,3497,3516,3542,3551", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2180,2255,2320,2386,2446,2507,2579,2652,2719,2787,2846,2905,2964,3023,3082,3136,3190,3243,3297,3351,3405,3459,3665,3744,3817,3891,3962,4034,4106,4179,4236,4294,4367,4441,4515,4590,4662,4735,4805,4876,4936,4997,5066,5135,5205,5279,5355,5419,5496,5572,5649,5714,5783,5860,5935,6004,6072,6149,6215,6276,6373,6438,6507,6606,6677,6736,6794,6851,6910,6974,7045,7117,7189,7261,7333,7400,7468,7536,7595,7658,7722,7812,7903,7963,8029,8096,8162,8232,8296,8349,8462,8520,8583,8648,8713,8788,8861,8933,8982,9043,9104,9165,9227,9291,9355,9419,9484,9547,9607,9668,9734,9793,9853,9915,9986,10046,10114,10688,10775,10865,10952,11040,11122,11205,11295,11386,12416,12474,12519,12585,12649,12706,12763,12817,13316,13364,13413,13464,13498,13615,13664,13753,14057,14223,14285,14345,14402,14679,14749,14827,14881,14951,15036,15084,15130,15201,15279,15357,15429,15503,15577,15651,15731,15804,15873,15945,16022,16083,16146,16212,16276,16347,16410,16475,16539,16600,16661,16713,16786,16860,16929,17004,17078,17152,17293,17363,21966,22981,23071,23159,23255,23345,24423,24512,24759,25040,25292,25577,25970,26447,26669,26891,27167,27394,27624,27854,28084,28314,28541,28960,29186,29611,29841,30269,30488,30771,30979,31110,31337,31763,31988,32415,32636,33061,33181,33457,33758,34082,34373,34687,34824,34955,35060,35302,35469,35673,35881,36152,36264,36376,36481,36598,36812,36958,37098,37184,37532,37620,37866,38284,38533,38615,38713,39330,39430,39682,40106,40361,40455,40544,40781,42833,43075,43177,43430,45614,56335,57851,68671,70199,71956,72582,73002,74063,75328,75584,75820,76367,76861,77466,77664,78244,78808,79183,79301,79839,79996,80192,80465,80721,80891,81032,81096,81378,81664,82340,82604,82942,83295,83389,83575,83881,84143,84268,84395,84634,84845,84964,85157,85334,85789,85970,86092,86351,86464,86651,86753,86860,86989,87264,87772,88268,89145,89439,90009,90158,90890,91062,91398,91490,91768,96914,101401,101463,102093,102707,102798,102911,103140,103300,103452,103623,103789,103958,104125,104288,104531,104701,104874,105045,105319,105518,105723,106053,106527,106623,106719,106817,106917,107019,107121,107223,107325,107427,107527,107623,107735,107864,107987,108118,108249,108347,108461,108555,108695,108829,108925,109037,109137,109253,109349,109461,109561,109701,109837,110001,110131,110289,110439,110580,110724,110859,110971,111121,111249,111377,111513,111645,111775,111905,112017,112157,113061,113205,113343,113435,113525,113601,113705,113795,113897,114005,114113,114213,114293,114385,114483,114593,114671,114777,114869,114973,115083,115205,115368,115525,117878,117978,118068,118178,118272,118378,118470,118570,118682,118796,118912,119028,119122,119236,119348,119450,119570,119692,119774,119878,119998,120124,120222,120316,120404,120516,120632,120754,120866,121041,121157,121243,121335,121447,121571,121638,121764,121832,121960,122104,122232,122301,122396,122511,122624,122723,122832,122943,123054,123155,123260,123360,123490,123581,123704,123798,123910,123996,124100,124196,124284,124402,124506,124610,124736,124824,124932,125032,125122,125232,125316,125418,125502,125556,125620,125726,125836,125920,126040,131909,132027,132142,132274,132989,133681,134198,135845,136230,136827,138426,139959,140347,142654,162172,162432,164122,170974,186110,186372,186728,187558,194340,195474,195768,195991,196318,198368,202712,204345,204615,208466,209067,212876,214091,215500,215974" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", -+ "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" -+ }, -+ "to": { -+ "startLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1662,1666,1667,1671,1848,1849,2524,2674,2717,2888,2925", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "3464,3533,10119,10189,10257,10329,10399,10460,10534,11391,11452,11513,11575,11639,11701,11762,11830,11930,11990,12056,12129,12198,12255,12307,12822,12894,13503,13538,13758,13808,13869,13926,13960,13995,14540,22531,112162,112279,112480,112590,112791,126045,126117,162437,170979,173885,181965,183725", -+ "endLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1665,1666,1670,1671,1848,1849,2530,2716,2748,2924,2931", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "3528,3591,10184,10252,10324,10394,10455,10529,10602,11447,11508,11570,11634,11696,11757,11825,11925,11985,12051,12124,12193,12250,12302,12364,12889,12965,13533,13568,13803,13864,13921,13955,13990,14025,14605,22597,112274,112475,112585,112786,112915,126112,126179,162730,173880,175945,183720,184097" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/70a4d59d737c9f8fe9a6cc82e0450ccb/coordinatorlayout-1.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,102,3,13", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,5935,116,724", -+ "endLines": "2,104,12,101", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "111,6075,719,5930" -+ }, -+ "to": { -+ "startLines": "2,1850,2557,2567", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "150,126184,164127,164735", -+ "endLines": "2,1852,2566,2655", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "206,126324,164730,169941" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", -+ "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", -+ "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2955", -+ "endColumns": "100", -+ "endOffsets": "3051" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2924", -+ "endColumns": "100", -+ "endOffsets": "3020" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", -+ "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", -+ "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2930", -+ "endColumns": "100", -+ "endOffsets": "3026" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", -+ "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", -+ "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-as_values-as.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", -+ "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", -+ "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2950", -+ "endColumns": "100", -+ "endOffsets": "3046" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", -+ "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", -+ "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2942", -+ "endColumns": "100", -+ "endOffsets": "3038" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", -+ "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", -+ "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", -+ "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", -+ "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2954", -+ "endColumns": "100", -+ "endOffsets": "3050" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", -+ "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", -+ "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2904", -+ "endColumns": "100", -+ "endOffsets": "3000" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", -+ "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", -+ "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2906", -+ "endColumns": "100", -+ "endOffsets": "3002" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", -+ "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", -+ "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2953", -+ "endColumns": "100", -+ "endOffsets": "3049" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2893", -+ "endColumns": "100", -+ "endOffsets": "2989" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", -+ "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", -+ "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", -+ "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", -+ "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2863", -+ "endColumns": "100", -+ "endOffsets": "2959" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-af.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-af.json -new file mode 100644 -index 0000000..723a539 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-af.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", -+ "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", -+ "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2856", -+ "endColumns": "100", -+ "endOffsets": "2952" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-am.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-am.json -new file mode 100644 -index 0000000..0a77d0b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-am.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", -+ "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", -+ "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2817", -+ "endColumns": "100", -+ "endOffsets": "2913" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ar.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ar.json -new file mode 100644 -index 0000000..bbf310d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ar.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2860", -+ "endColumns": "100", -+ "endOffsets": "2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", -+ "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", -+ "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-as.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-as.json -new file mode 100644 -index 0000000..5666858 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-as.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-as/values-as.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", -+ "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", -+ "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2950", -+ "endColumns": "100", -+ "endOffsets": "3046" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-az.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-az.json -new file mode 100644 -index 0000000..edd6367 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-az.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", -+ "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", -+ "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-b+sr+Latn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-b+sr+Latn.json -new file mode 100644 -index 0000000..2f4f9e3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-b+sr+Latn.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", -+ "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", -+ "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2912", -+ "endColumns": "100", -+ "endOffsets": "3008" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-be.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-be.json -new file mode 100644 -index 0000000..1b0d3c7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-be.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", -+ "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", -+ "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bg.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bg.json -new file mode 100644 -index 0000000..dc9da94 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bg.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2930", -+ "endColumns": "100", -+ "endOffsets": "3026" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", -+ "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", -+ "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bn.json -new file mode 100644 -index 0000000..3e8c39f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bn.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", -+ "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", -+ "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2939", -+ "endColumns": "100", -+ "endOffsets": "3035" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bs.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bs.json -new file mode 100644 -index 0000000..db7477c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-bs.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", -+ "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", -+ "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ca.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ca.json -new file mode 100644 -index 0000000..ae825da ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ca.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", -+ "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", -+ "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-cs.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-cs.json -new file mode 100644 -index 0000000..e8e4740 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-cs.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", -+ "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", -+ "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2891", -+ "endColumns": "100", -+ "endOffsets": "2987" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-da.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-da.json -new file mode 100644 -index 0000000..923fef0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-da.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", -+ "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", -+ "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2844", -+ "endColumns": "100", -+ "endOffsets": "2940" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-de.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-de.json -new file mode 100644 -index 0000000..6896a6f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-de.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", -+ "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", -+ "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2925", -+ "endColumns": "100", -+ "endOffsets": "3021" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-el.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-el.json -new file mode 100644 -index 0000000..efaeba0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-el.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", -+ "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", -+ "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2964", -+ "endColumns": "100", -+ "endOffsets": "3060" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rAU.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rAU.json -new file mode 100644 -index 0000000..a2157b8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rAU.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rCA.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rCA.json -new file mode 100644 -index 0000000..02c7ef9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rCA.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rCA/values-en-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rGB.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rGB.json -new file mode 100644 -index 0000000..0c70b7c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rGB.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rIN.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rIN.json -new file mode 100644 -index 0000000..1fcae55 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rIN.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rXC.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rXC.json -new file mode 100644 -index 0000000..a9687ff ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-en-rXC.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rXC/values-en-rXC.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", -+ "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", -+ "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "202", -+ "endOffsets": "253" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "5682", -+ "endColumns": "202", -+ "endOffsets": "5880" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es-rUS.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es-rUS.json -new file mode 100644 -index 0000000..04ad5f9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es-rUS.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", -+ "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", -+ "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es.json -new file mode 100644 -index 0000000..ba8a047 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-es.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2924", -+ "endColumns": "100", -+ "endOffsets": "3020" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", -+ "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", -+ "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-et.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-et.json -new file mode 100644 -index 0000000..d2a0516 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-et.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", -+ "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", -+ "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2942", -+ "endColumns": "100", -+ "endOffsets": "3038" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-eu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-eu.json -new file mode 100644 -index 0000000..85da72b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-eu.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", -+ "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", -+ "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2938", -+ "endColumns": "100", -+ "endOffsets": "3034" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fa.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fa.json -new file mode 100644 -index 0000000..86313ed ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fa.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", -+ "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", -+ "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fi.json -new file mode 100644 -index 0000000..befe167 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fi.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2872", -+ "endColumns": "100", -+ "endOffsets": "2968" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", -+ "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", -+ "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr-rCA.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr-rCA.json -new file mode 100644 -index 0000000..479697d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr-rCA.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2965", -+ "endColumns": "100", -+ "endOffsets": "3061" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", -+ "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", -+ "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr.json -new file mode 100644 -index 0000000..b1b991a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-fr.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", -+ "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", -+ "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gl.json -new file mode 100644 -index 0000000..7cebf9e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gl.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", -+ "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", -+ "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gu.json -new file mode 100644 -index 0000000..4ad8301 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-gu.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", -+ "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", -+ "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-h720dp-v13.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-h720dp-v13.json -new file mode 100644 -index 0000000..3adf98c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-h720dp-v13.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-h720dp-v13/values-h720dp-v13.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "66", -+ "endOffsets": "117" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hdpi-v4.json -new file mode 100644 -index 0000000..1743742 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hdpi-v4.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hdpi-v4/values-hdpi-v4.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "6", -+ "endColumns": "13", -+ "endOffsets": "327" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hi.json -new file mode 100644 -index 0000000..1602a3e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hi.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", -+ "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", -+ "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2892", -+ "endColumns": "100", -+ "endOffsets": "2988" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hr.json -new file mode 100644 -index 0000000..b06e30f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hr.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", -+ "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", -+ "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hu.json -new file mode 100644 -index 0000000..65c47e1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hu.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", -+ "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", -+ "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2961", -+ "endColumns": "100", -+ "endOffsets": "3057" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hy.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hy.json -new file mode 100644 -index 0000000..b41b4fd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-hy.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2884", -+ "endColumns": "100", -+ "endOffsets": "2980" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", -+ "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", -+ "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-in.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-in.json -new file mode 100644 -index 0000000..7ac98b4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-in.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", -+ "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", -+ "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-is.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-is.json -new file mode 100644 -index 0000000..e63aa6d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-is.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", -+ "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", -+ "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-it.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-it.json -new file mode 100644 -index 0000000..942f892 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-it.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", -+ "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", -+ "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2906", -+ "endColumns": "100", -+ "endOffsets": "3002" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-iw.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-iw.json -new file mode 100644 -index 0000000..3046b4f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-iw.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", -+ "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", -+ "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2832", -+ "endColumns": "100", -+ "endOffsets": "2928" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ja.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ja.json -new file mode 100644 -index 0000000..1e2ed89 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ja.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", -+ "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", -+ "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2771", -+ "endColumns": "100", -+ "endOffsets": "2867" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ka.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ka.json -new file mode 100644 -index 0000000..44e5fae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ka.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", -+ "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", -+ "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2899", -+ "endColumns": "100", -+ "endOffsets": "2995" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kk.json -new file mode 100644 -index 0000000..c7bb4ad ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kk.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2893", -+ "endColumns": "100", -+ "endOffsets": "2989" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", -+ "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", -+ "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-km.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-km.json -new file mode 100644 -index 0000000..a960950 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-km.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", -+ "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", -+ "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kn.json -new file mode 100644 -index 0000000..7134551 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-kn.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", -+ "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", -+ "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2948", -+ "endColumns": "100", -+ "endOffsets": "3044" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ko.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ko.json -new file mode 100644 -index 0000000..f1a0b55 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ko.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", -+ "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", -+ "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2756", -+ "endColumns": "100", -+ "endOffsets": "2852" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ky.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ky.json -new file mode 100644 -index 0000000..42fb38c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ky.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", -+ "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", -+ "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-land.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-land.json -new file mode 100644 -index 0000000..9574d66 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-land.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-land/values-land.xml", -+ "from": { -+ "startLines": "2,3,4", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,125,196", -+ "endColumns": "69,70,67", -+ "endOffsets": "120,191,259" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-large-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-large-v4.json -new file mode 100644 -index 0000000..7755876 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-large-v4.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-large-v4/values-large-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10", -+ "startColumns": "4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,114,185,256,326,396,464,532,636", -+ "endColumns": "58,70,70,69,69,67,67,103,115", -+ "endOffsets": "109,180,251,321,391,459,527,631,747" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ldltr-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ldltr-v21.json -new file mode 100644 -index 0000000..740ef67 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ldltr-v21.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ldltr-v21/values-ldltr-v21.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "112", -+ "endOffsets": "163" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lo.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lo.json -new file mode 100644 -index 0000000..59c1d09 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lo.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo/values-lo.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", -+ "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", -+ "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2836", -+ "endColumns": "100", -+ "endOffsets": "2932" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lt.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lt.json -new file mode 100644 -index 0000000..42b3105 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lt.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", -+ "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", -+ "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2978", -+ "endColumns": "100", -+ "endOffsets": "3074" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lv.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lv.json -new file mode 100644 -index 0000000..cadecba ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-lv.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "3076", -+ "endColumns": "100", -+ "endOffsets": "3172" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", -+ "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", -+ "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mk.json -new file mode 100644 -index 0000000..2040cf1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mk.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk/values-mk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", -+ "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", -+ "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ml.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ml.json -new file mode 100644 -index 0000000..6f67f21 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ml.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml/values-ml.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", -+ "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", -+ "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2955", -+ "endColumns": "100", -+ "endOffsets": "3051" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mn.json -new file mode 100644 -index 0000000..9c1e490 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mn.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn/values-mn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", -+ "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", -+ "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2876", -+ "endColumns": "100", -+ "endOffsets": "2972" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mr.json -new file mode 100644 -index 0000000..cb00177 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-mr.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr/values-mr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", -+ "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", -+ "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ms.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ms.json -new file mode 100644 -index 0000000..67659d0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ms.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms/values-ms.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2881", -+ "endColumns": "100", -+ "endOffsets": "2977" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", -+ "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", -+ "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-my.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-my.json -new file mode 100644 -index 0000000..761e1c9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-my.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my/values-my.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2979", -+ "endColumns": "100", -+ "endOffsets": "3075" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", -+ "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", -+ "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nb.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nb.json -new file mode 100644 -index 0000000..0402be9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nb.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", -+ "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", -+ "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2826", -+ "endColumns": "100", -+ "endOffsets": "2922" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ne.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ne.json -new file mode 100644 -index 0000000..e36a972 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ne.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne/values-ne.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2988", -+ "endColumns": "100", -+ "endOffsets": "3084" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", -+ "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", -+ "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-night-v8.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-night-v8.json -new file mode 100644 -index 0000000..cc26539 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-night-v8.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-night-v8/values-night-v8.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8", -+ "startColumns": "4,4,4,4,4,4,4", -+ "startOffsets": "55,125,209,293,389,491,593", -+ "endColumns": "69,83,83,95,101,101,93", -+ "endOffsets": "120,204,288,384,486,588,682" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nl.json -new file mode 100644 -index 0000000..1fbffdd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-nl.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2921", -+ "endColumns": "100", -+ "endOffsets": "3017" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", -+ "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", -+ "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-or.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-or.json -new file mode 100644 -index 0000000..8d97c86 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-or.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-or/values-or.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", -+ "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", -+ "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pa.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pa.json -new file mode 100644 -index 0000000..6864a41 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pa.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa/values-pa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2839", -+ "endColumns": "100", -+ "endOffsets": "2935" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", -+ "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", -+ "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pl.json -new file mode 100644 -index 0000000..c1db243 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pl.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2909", -+ "endColumns": "100", -+ "endOffsets": "3005" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", -+ "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", -+ "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-port.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-port.json -new file mode 100644 -index 0000000..0b3aaa1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-port.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-port/values-port.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "55", -+ "endOffsets": "106" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rBR.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rBR.json -new file mode 100644 -index 0000000..d72cc0f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rBR.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rPT.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rPT.json -new file mode 100644 -index 0000000..8011165 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt-rPT.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", -+ "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", -+ "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt.json -new file mode 100644 -index 0000000..ba1ae73 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-pt.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ro.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ro.json -new file mode 100644 -index 0000000..aca230c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ro.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", -+ "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", -+ "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2953", -+ "endColumns": "100", -+ "endOffsets": "3049" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ru.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ru.json -new file mode 100644 -index 0000000..96d55f9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ru.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", -+ "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", -+ "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2913", -+ "endColumns": "100", -+ "endOffsets": "3009" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-si.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-si.json -new file mode 100644 -index 0000000..3ca4bb0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-si.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si/values-si.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", -+ "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", -+ "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sk.json -new file mode 100644 -index 0000000..42884a1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sk.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2918", -+ "endColumns": "100", -+ "endOffsets": "3014" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", -+ "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", -+ "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sl.json -new file mode 100644 -index 0000000..7f11492 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sl.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", -+ "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", -+ "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sq.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sq.json -new file mode 100644 -index 0000000..c20ef7b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sq.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq/values-sq.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2907", -+ "endColumns": "100", -+ "endOffsets": "3003" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", -+ "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", -+ "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sr.json -new file mode 100644 -index 0000000..b98dcb5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sr.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2905", -+ "endColumns": "100", -+ "endOffsets": "3001" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", -+ "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", -+ "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sv.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sv.json -new file mode 100644 -index 0000000..59af86c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sv.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", -+ "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", -+ "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2863", -+ "endColumns": "100", -+ "endOffsets": "2959" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw.json -new file mode 100644 -index 0000000..dab4252 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", -+ "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", -+ "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw600dp-v13.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw600dp-v13.json -new file mode 100644 -index 0000000..e2d809f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-sw600dp-v13.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9", -+ "startColumns": "4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,193,263,337,413,472,543", -+ "endColumns": "68,68,69,73,75,58,70,67", -+ "endOffsets": "119,188,258,332,408,467,538,606" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ta.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ta.json -new file mode 100644 -index 0000000..598667a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ta.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", -+ "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", -+ "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2954", -+ "endColumns": "100", -+ "endOffsets": "3050" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-te.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-te.json -new file mode 100644 -index 0000000..af8f7bb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-te.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te/values-te.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", -+ "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", -+ "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2946", -+ "endColumns": "100", -+ "endOffsets": "3042" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-th.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-th.json -new file mode 100644 -index 0000000..9ab98f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-th.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", -+ "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", -+ "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2845", -+ "endColumns": "100", -+ "endOffsets": "2941" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tl.json -new file mode 100644 -index 0000000..71d932b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tl.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", -+ "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", -+ "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tr.json -new file mode 100644 -index 0000000..bef11a1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-tr.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", -+ "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", -+ "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uk.json -new file mode 100644 -index 0000000..9f1ee1c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uk.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", -+ "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", -+ "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2900", -+ "endColumns": "100", -+ "endOffsets": "2996" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ur.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ur.json -new file mode 100644 -index 0000000..062a789 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-ur.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", -+ "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", -+ "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2904", -+ "endColumns": "100", -+ "endOffsets": "3000" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uz.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uz.json -new file mode 100644 -index 0000000..9f7f81d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-uz.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2889", -+ "endColumns": "100", -+ "endOffsets": "2985" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", -+ "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", -+ "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v16.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v16.json -new file mode 100644 -index 0000000..0b6b224 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v16.json -@@ -0,0 +1,38 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "65", -+ "endOffsets": "116" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "5", -+ "endColumns": "12", -+ "endOffsets": "223" -+ }, -+ "to": { -+ "startLines": "3", -+ "startColumns": "4", -+ "startOffsets": "121", -+ "endLines": "6", -+ "endColumns": "12", -+ "endOffsets": "289" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v17.json -new file mode 100644 -index 0000000..1bf652b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v17.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v17/values-v17.xml", -+ "from": { -+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", -+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", -+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", -+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v18.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v18.json -new file mode 100644 -index 0000000..1164385 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v18.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v18/values-v18.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "48", -+ "endOffsets": "99" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v21.json -new file mode 100644 -index 0000000..009be7e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v21.json -@@ -0,0 +1,47 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,13", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,354,470,596,722,850,1022", -+ "endLines": "2,3,4,5,6,7,8,9,12,17", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" -+ }, -+ "to": { -+ "startLines": "2,3,4,5,263,264,265,266,267,270", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", -+ "endLines": "2,3,4,5,263,264,265,266,269,274", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" -+ }, -+ "to": { -+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", -+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v22.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v22.json -new file mode 100644 -index 0000000..fce4b83 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v22.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v22/values-v22.xml", -+ "from": { -+ "startLines": "2,3,4,9", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,553", -+ "endLines": "2,3,8,13", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,548,896" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v23.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v23.json -new file mode 100644 -index 0000000..1842d76 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v23.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v23/values-v23.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,19,32,33,34,35,36", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", -+ "endLines": "2,3,4,5,18,31,32,33,34,35,36", -+ "endColumns": "134,134,74,86,12,12,126,104,114,106,112", -+ "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v24.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v24.json -new file mode 100644 -index 0000000..3708beb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v24.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v24/values-v24.xml", -+ "from": { -+ "startLines": "2,3", -+ "startColumns": "4,4", -+ "startOffsets": "55,212", -+ "endColumns": "156,134", -+ "endOffsets": "207,342" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v25.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v25.json -new file mode 100644 -index 0000000..efc9d89 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v25.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v25/values-v25.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v25/values-v25.xml", -+ "from": { -+ "startLines": "2,3,4,6", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,126,209,308", -+ "endLines": "2,3,5,7", -+ "endColumns": "70,82,12,12", -+ "endOffsets": "121,204,303,414" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v26.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v26.json -new file mode 100644 -index 0000000..b301fec ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v26.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v26/values-v26.xml", -+ "from": { -+ "startLines": "2,3,4,8,12,16", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,130,217,431,657,896", -+ "endLines": "2,3,7,11,15,16", -+ "endColumns": "74,86,12,12,12,92", -+ "endOffsets": "125,212,426,652,891,984" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v28.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v28.json -new file mode 100644 -index 0000000..5e38271 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-v28.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v28/values-v28.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v28/values-v28.xml", -+ "from": { -+ "startLines": "2,3,4,8", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,447", -+ "endLines": "2,3,7,11", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,442,684" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-vi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-vi.json -new file mode 100644 -index 0000000..f1705db ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-vi.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", -+ "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", -+ "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2901", -+ "endColumns": "100", -+ "endOffsets": "2997" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v20.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v20.json -new file mode 100644 -index 0000000..8eeb1fe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v20.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v20/values-watch-v20.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v20/values-watch-v20.xml", -+ "from": { -+ "startLines": "2,5,8", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,214,385", -+ "endLines": "4,7,10", -+ "endColumns": "12,12,12", -+ "endOffsets": "209,380,553" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v21.json -new file mode 100644 -index 0000000..dc31bc7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-watch-v21.json -@@ -0,0 +1,20 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-watch-v21/values-watch-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v21/values-watch-v21.xml", -+ "from": { -+ "startLines": "2,6,10", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,271,499", -+ "endLines": "5,9,13", -+ "endColumns": "12,12,12", -+ "endOffsets": "266,494,724" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-xlarge-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-xlarge-v4.json -new file mode 100644 -index 0000000..cf95446 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-xlarge-v4.json -@@ -0,0 +1,19 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-xlarge-v4/values-xlarge-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,126,197,267,337,405", -+ "endColumns": "70,70,69,69,67,67", -+ "endOffsets": "121,192,262,332,400,468" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rCN.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rCN.json -new file mode 100644 -index 0000000..351dcf4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rCN.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", -+ "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", -+ "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2744", -+ "endColumns": "100", -+ "endOffsets": "2840" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rHK.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rHK.json -new file mode 100644 -index 0000000..4454a7e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rHK.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2746", -+ "endColumns": "100", -+ "endOffsets": "2842" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rTW.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rTW.json -new file mode 100644 -index 0000000..d77e1b4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zh-rTW.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2753", -+ "endColumns": "100", -+ "endOffsets": "2849" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zu.json -new file mode 100644 -index 0000000..e0d550b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values-zu.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", -+ "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", -+ "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2898", -+ "endColumns": "100", -+ "endOffsets": "2994" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values.json -new file mode 100644 -index 0000000..0964515 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/multi-v2/values.json -@@ -0,0 +1,104 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,74,78,81,84,88,92,95,98,99,100,109,116,123,126,129,132,138", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "100,163,226,277,325,374,422,471,520,563,617,665,729,798,871,946,1069,1165,1254,1362,1479,1599,1719,1821,1924,2035,2142,2245,2356,2525,2693,2810,2914,3027,3183,3291,3404,3495,3606,3775,3873,4000,4125,4220,4327,4407,4483,4556,4643,4714,4785,4863,4943,5029,5113,5185,5267,5348,5432,5509,5596,5681,5760,5835,5908,5985,6063,6136,6214,6462,6710,6913,7104,7306,7512,7713,7902,7928,7963,8501,8919,9297,9474,9653,9836,10201", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,87,91,94,97,98,99,108,115,122,125,128,131,137,147", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "158,221,272,320,369,417,466,515,558,612,660,724,793,866,941,1064,1160,1249,1357,1474,1594,1714,1816,1919,2030,2137,2240,2351,2520,2688,2805,2909,3022,3178,3286,3399,3490,3601,3770,3868,3995,4120,4215,4322,4402,4478,4551,4638,4709,4780,4858,4938,5024,5108,5180,5262,5343,5427,5504,5591,5676,5755,5830,5903,5980,6058,6131,6209,6457,6705,6908,7099,7301,7507,7708,7897,7923,7958,8496,8914,9292,9469,9648,9831,10196,10637" -+ }, -+ "to": { -+ "startLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,324,328,1392,1395,1398,1402,1599,1602,1678,1708,1709,1718,1725,1732,1735,1738,1741,1853", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "1985,2048,12970,13021,13069,13118,13166,13215,13669,14062,14116,14407,14471,17368,17441,17516,17639,17735,17824,17932,18049,18169,18289,18391,18494,18605,18712,18815,18926,19095,19263,19380,19484,19597,19753,19861,19974,20065,20176,20345,20443,20570,20695,20790,20897,20977,21053,21126,21213,21284,21355,21433,21513,21599,21683,21755,21837,21971,22055,22132,22219,22304,22383,22458,22602,22679,22757,22830,23350,23598,91773,91976,92167,92369,106058,106259,113348,115530,115565,116103,116521,116899,117076,117255,117438,126329", -+ "endLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,327,331,1394,1397,1401,1405,1601,1604,1678,1708,1717,1724,1731,1734,1737,1740,1746,1862", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "2043,2106,13016,13064,13113,13161,13210,13259,13707,14111,14159,14466,14535,17436,17511,17634,17730,17819,17927,18044,18164,18284,18386,18489,18600,18707,18810,18921,19090,19258,19375,19479,19592,19748,19856,19969,20060,20171,20340,20438,20565,20690,20785,20892,20972,21048,21121,21208,21279,21350,21428,21508,21594,21678,21750,21832,21913,22050,22127,22214,22299,22378,22453,22526,22674,22752,22825,22903,23593,23841,91971,92162,92364,92570,106254,106443,113369,115560,116098,116516,116894,117071,117250,117433,117798,126765" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/c3903e74c0a2f78a9ce6b238f654896f/jetified-drawee-2.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,141", -+ "startColumns": "4,4", -+ "startOffsets": "55,6070", -+ "endLines": "140,231", -+ "endColumns": "22,22", -+ "endOffsets": "6065,9761" -+ }, -+ "to": { -+ "startLines": "2749,3217", -+ "startColumns": "4,4", -+ "startOffsets": "175950,198373", -+ "endLines": "2887,3307", -+ "endColumns": "22,22", -+ "endOffsets": "181960,202064" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" -+ }, -+ "to": { -+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,332,340,341,345,349,353,358,364,371,375,379,384,388,392,396,400,404,408,414,418,424,428,434,438,443,447,450,454,460,464,470,474,480,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,822,848,1017,1043,1074,1082,1088,1102,1124,1129,1134,1144,1153,1162,1166,1173,1181,1188,1189,1198,1201,1204,1208,1212,1216,1219,1220,1224,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1386,1387,1406,1464,1523,1524,1534,1543,1544,1546,1550,1553,1556,1559,1562,1565,1568,1571,1575,1578,1581,1584,1588,1591,1595,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1627,1629,1630,1631,1632,1633,1634,1635,1636,1638,1639,1641,1642,1644,1646,1647,1649,1650,1651,1652,1653,1654,1656,1657,1658,1659,1660,1672,1674,1676,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1693,1694,1695,1696,1697,1698,1700,1704,1747,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1863,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2531,2656,2932,2968,2974,2980,3003,3144,3164,3170,3174,3180,3308,3320,3347,3352,3418,3433,3498,3517,3543", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2111,2185,2260,2325,2391,2451,2512,2584,2657,2724,2792,2851,2910,2969,3028,3087,3141,3195,3248,3302,3356,3410,3596,3670,3749,3822,3896,3967,4039,4111,4184,4241,4299,4372,4446,4520,4595,4667,4740,4810,4881,4941,5002,5071,5140,5210,5284,5360,5424,5501,5577,5654,5719,5788,5865,5940,6009,6077,6154,6220,6281,6378,6443,6512,6611,6682,6741,6799,6856,6915,6979,7050,7122,7194,7266,7338,7405,7473,7541,7600,7663,7727,7817,7908,7968,8034,8101,8167,8237,8301,8354,8467,8525,8588,8653,8718,8793,8866,8938,8987,9048,9109,9170,9232,9296,9360,9424,9489,9552,9612,9673,9739,9798,9858,9920,9991,10051,10607,10693,10780,10870,10957,11045,11127,11210,11300,12369,12421,12479,12524,12590,12654,12711,12768,13264,13321,13369,13418,13469,13573,13620,13712,14030,14164,14228,14290,14350,14610,14684,14754,14832,14886,14956,15041,15089,15135,15206,15284,15362,15434,15508,15582,15656,15736,15809,15878,15950,16027,16088,16151,16217,16281,16352,16415,16480,16544,16605,16666,16718,16791,16865,16934,17009,17083,17157,17298,21918,22908,22986,23076,23164,23260,23846,24428,24517,24764,25045,25297,25582,25975,26452,26674,26896,27172,27399,27629,27859,28089,28319,28546,28965,29191,29616,29846,30274,30493,30776,30984,31115,31342,31768,31993,32420,32641,33066,33186,33462,33763,34087,34378,34692,34829,34960,35065,35307,35474,35678,35886,36157,36269,36381,36486,36603,36817,36963,37103,37189,37537,37625,37871,38289,38538,38620,38718,39335,39435,39687,40111,40366,40460,40549,40786,42838,43080,43182,43435,45619,56340,57856,68676,70204,71961,72587,73007,74068,75333,75589,75825,76372,76866,77471,77669,78249,78813,79188,79306,79844,80001,80197,80470,80726,80896,81037,81101,81383,81669,82345,82609,82947,83300,83394,83580,83886,84148,84273,84400,84639,84850,84969,85162,85339,85794,85975,86097,86356,86469,86656,86758,86865,86994,87269,87777,88273,89150,89444,90014,90163,90895,91067,91403,91495,92575,96919,101406,101468,102098,102712,102803,102916,103145,103305,103457,103628,103794,103963,104130,104293,104536,104706,104879,105050,105324,105523,105728,106448,106532,106628,106724,106822,106922,107024,107126,107228,107330,107432,107532,107628,107740,107869,107992,108123,108254,108352,108466,108560,108700,108834,108930,109042,109142,109258,109354,109466,109566,109706,109842,110006,110136,110294,110444,110585,110729,110864,110976,111126,111254,111382,111518,111650,111780,111910,112022,112920,113066,113210,113374,113440,113530,113606,113710,113800,113902,114010,114118,114218,114298,114390,114488,114598,114676,114782,114874,114978,115088,115210,115373,117803,117883,117983,118073,118183,118277,118383,118475,118575,118687,118801,118917,119033,119127,119241,119353,119455,119575,119697,119779,119883,120003,120129,120227,120321,120409,120521,120637,120759,120871,121046,121162,121248,121340,121452,121576,121643,121769,121837,121965,122109,122237,122306,122401,122516,122629,122728,122837,122948,123059,123160,123265,123365,123495,123586,123709,123803,123915,124001,124105,124201,124289,124407,124511,124615,124741,124829,124937,125037,125127,125237,125321,125423,125507,125561,125625,125731,125841,125925,126770,131914,132032,132147,132279,132994,133686,134203,135850,136235,136832,138431,139964,140352,142659,162177,162735,169946,184102,186115,186377,186733,187563,194345,195479,195773,195996,196323,202069,202717,204350,204620,208471,209072,212881,214096,215505", -+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,339,340,344,348,352,357,363,370,374,378,383,387,391,395,399,403,407,413,417,423,427,433,437,442,446,449,453,459,463,469,473,479,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,821,847,1016,1042,1073,1081,1087,1101,1123,1128,1133,1143,1152,1161,1165,1172,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1223,1227,1237,1242,1249,1255,1256,1259,1263,1268,1270,1272,1275,1278,1280,1284,1287,1294,1297,1300,1304,1306,1310,1312,1314,1316,1320,1328,1336,1348,1354,1363,1366,1377,1380,1385,1386,1391,1463,1522,1523,1533,1542,1543,1545,1549,1552,1555,1558,1561,1564,1567,1570,1574,1577,1580,1583,1587,1590,1594,1598,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1626,1628,1629,1630,1631,1632,1633,1634,1635,1637,1638,1640,1641,1643,1645,1646,1648,1649,1650,1651,1652,1653,1655,1656,1657,1658,1659,1660,1673,1675,1677,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1692,1693,1694,1695,1696,1697,1699,1703,1707,1747,1748,1749,1750,1751,1752,1753,1755,1757,1759,1761,1763,1764,1765,1766,1768,1770,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1786,1787,1788,1789,1791,1793,1794,1796,1797,1799,1801,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1819,1821,1822,1823,1824,1825,1827,1829,1831,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1945,1948,1951,1954,1968,1979,1989,2016,2023,2034,2064,2091,2100,2137,2518,2523,2556,2673,2967,2973,2979,3002,3143,3163,3169,3173,3179,3216,3319,3346,3351,3417,3432,3497,3516,3542,3551", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2180,2255,2320,2386,2446,2507,2579,2652,2719,2787,2846,2905,2964,3023,3082,3136,3190,3243,3297,3351,3405,3459,3665,3744,3817,3891,3962,4034,4106,4179,4236,4294,4367,4441,4515,4590,4662,4735,4805,4876,4936,4997,5066,5135,5205,5279,5355,5419,5496,5572,5649,5714,5783,5860,5935,6004,6072,6149,6215,6276,6373,6438,6507,6606,6677,6736,6794,6851,6910,6974,7045,7117,7189,7261,7333,7400,7468,7536,7595,7658,7722,7812,7903,7963,8029,8096,8162,8232,8296,8349,8462,8520,8583,8648,8713,8788,8861,8933,8982,9043,9104,9165,9227,9291,9355,9419,9484,9547,9607,9668,9734,9793,9853,9915,9986,10046,10114,10688,10775,10865,10952,11040,11122,11205,11295,11386,12416,12474,12519,12585,12649,12706,12763,12817,13316,13364,13413,13464,13498,13615,13664,13753,14057,14223,14285,14345,14402,14679,14749,14827,14881,14951,15036,15084,15130,15201,15279,15357,15429,15503,15577,15651,15731,15804,15873,15945,16022,16083,16146,16212,16276,16347,16410,16475,16539,16600,16661,16713,16786,16860,16929,17004,17078,17152,17293,17363,21966,22981,23071,23159,23255,23345,24423,24512,24759,25040,25292,25577,25970,26447,26669,26891,27167,27394,27624,27854,28084,28314,28541,28960,29186,29611,29841,30269,30488,30771,30979,31110,31337,31763,31988,32415,32636,33061,33181,33457,33758,34082,34373,34687,34824,34955,35060,35302,35469,35673,35881,36152,36264,36376,36481,36598,36812,36958,37098,37184,37532,37620,37866,38284,38533,38615,38713,39330,39430,39682,40106,40361,40455,40544,40781,42833,43075,43177,43430,45614,56335,57851,68671,70199,71956,72582,73002,74063,75328,75584,75820,76367,76861,77466,77664,78244,78808,79183,79301,79839,79996,80192,80465,80721,80891,81032,81096,81378,81664,82340,82604,82942,83295,83389,83575,83881,84143,84268,84395,84634,84845,84964,85157,85334,85789,85970,86092,86351,86464,86651,86753,86860,86989,87264,87772,88268,89145,89439,90009,90158,90890,91062,91398,91490,91768,96914,101401,101463,102093,102707,102798,102911,103140,103300,103452,103623,103789,103958,104125,104288,104531,104701,104874,105045,105319,105518,105723,106053,106527,106623,106719,106817,106917,107019,107121,107223,107325,107427,107527,107623,107735,107864,107987,108118,108249,108347,108461,108555,108695,108829,108925,109037,109137,109253,109349,109461,109561,109701,109837,110001,110131,110289,110439,110580,110724,110859,110971,111121,111249,111377,111513,111645,111775,111905,112017,112157,113061,113205,113343,113435,113525,113601,113705,113795,113897,114005,114113,114213,114293,114385,114483,114593,114671,114777,114869,114973,115083,115205,115368,115525,117878,117978,118068,118178,118272,118378,118470,118570,118682,118796,118912,119028,119122,119236,119348,119450,119570,119692,119774,119878,119998,120124,120222,120316,120404,120516,120632,120754,120866,121041,121157,121243,121335,121447,121571,121638,121764,121832,121960,122104,122232,122301,122396,122511,122624,122723,122832,122943,123054,123155,123260,123360,123490,123581,123704,123798,123910,123996,124100,124196,124284,124402,124506,124610,124736,124824,124932,125032,125122,125232,125316,125418,125502,125556,125620,125726,125836,125920,126040,131909,132027,132142,132274,132989,133681,134198,135845,136230,136827,138426,139959,140347,142654,162172,162432,164122,170974,186110,186372,186728,187558,194340,195474,195768,195991,196318,198368,202712,204345,204615,208466,209067,212876,214091,215500,215974" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", -+ "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" -+ }, -+ "to": { -+ "startLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1662,1666,1667,1671,1848,1849,2524,2674,2717,2888,2925", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "3464,3533,10119,10189,10257,10329,10399,10460,10534,11391,11452,11513,11575,11639,11701,11762,11830,11930,11990,12056,12129,12198,12255,12307,12822,12894,13503,13538,13758,13808,13869,13926,13960,13995,14540,22531,112162,112279,112480,112590,112791,126045,126117,162437,170979,173885,181965,183725", -+ "endLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1665,1666,1670,1671,1848,1849,2530,2716,2748,2924,2931", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "3528,3591,10184,10252,10324,10394,10455,10529,10602,11447,11508,11570,11634,11696,11757,11825,11925,11985,12051,12124,12193,12250,12302,12364,12889,12965,13533,13568,13803,13864,13921,13955,13990,14025,14605,22597,112274,112475,112585,112786,112915,126112,126179,162730,173880,175945,183720,184097" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/70a4d59d737c9f8fe9a6cc82e0450ccb/coordinatorlayout-1.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,102,3,13", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,5935,116,724", -+ "endLines": "2,104,12,101", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "111,6075,719,5930" -+ }, -+ "to": { -+ "startLines": "2,1850,2557,2567", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "150,126184,164127,164735", -+ "endLines": "2,1852,2566,2655", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "206,126324,164730,169941" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/single/debug.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/single/debug.json -new file mode 100644 -index 0000000..b93834a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/debugAndroidTest/out/single/debug.json -@@ -0,0 +1,1542 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_indicator_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_switch_track.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_edit_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-v26/abc_screen_toolbar.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_grow_fade_in_from_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_ab_back_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/support_simple_spinner_dropdown_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_voice_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_dev_loading_view.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/dev_loading_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_radio.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_custom_big.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-watch-v20/abc_dialog_material_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_toolbar.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_radio_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_borderless_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_up_container.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_small_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-v21/notification_action_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_edittext.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_spinner.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_icon.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_item_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_textfield_search_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_spinner.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_button_bar_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_dialog_material_background.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_dialog_material_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_frame.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_frame.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_switch_thumb_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_in.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/xml_rn_dev_preferences.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/xml/rn_dev_preferences.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_btn_colored_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_exit.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_exit.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_enter.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_bar.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_search_url_text.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_icon_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_clear_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_menu_overflow_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_title_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_tick_mark_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_seek_thumb.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_top.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_tab_indicator_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_top.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_enter.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_enter.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_default.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_expanded_menu_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_edittext.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_checkbox.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_out.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_redbox_top_border_background.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/drawable/redbox_top_border_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_header_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_view.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_spinner_textfield_background_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action_tombstone.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v21/abc_btn_colored_borderless_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_text_cursor_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_switch_track.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_btn_checkable.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_btn_colored_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_track_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_thumb_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_down.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_down.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_title.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_title.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_fps_view.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/fps_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_default_mtrl_shape.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_internal_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_cascading_menu_item_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_cascading_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_tile_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_up.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_up.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_select_dialog_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_content_include.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_exit.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_color_highlight_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg_low.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_default.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_check_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_go_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v23/abc_control_background_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view_list_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_time.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_borderless_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_multichoice_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_btn_checkable.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_out.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_icon_group.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_action_bar_item_background_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_list_divider_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_list_divider_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple_overlay_action_mode.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_chronometer.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_top_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_singlechoice_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_dropdown_item_icons_2line.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_vector_test.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_tooltip.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_tooltip.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_seek_thumb.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_shrink_fade_out_from_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_close_item_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_in.xml.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-af.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-af.json -new file mode 100644 -index 0000000..08227e2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-af.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-af/values-af.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", -+ "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", -+ "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2856", -+ "endColumns": "100", -+ "endOffsets": "2952" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", -+ "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", -+ "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-af/values-af.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2856", -+ "endColumns": "100", -+ "endOffsets": "2952" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-am.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-am.json -new file mode 100644 -index 0000000..df25426 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-am.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-am/values-am.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", -+ "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", -+ "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2817", -+ "endColumns": "100", -+ "endOffsets": "2913" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", -+ "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", -+ "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-am/values-am.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2817", -+ "endColumns": "100", -+ "endOffsets": "2913" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ar.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ar.json -new file mode 100644 -index 0000000..0b7939c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ar.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2860", -+ "endColumns": "100", -+ "endOffsets": "2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", -+ "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", -+ "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ar/values-ar.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2860", -+ "endColumns": "100", -+ "endOffsets": "2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ar/values-ar.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", -+ "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", -+ "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-as.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-as.json -new file mode 100644 -index 0000000..82b5ff7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-as.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-as/values-as.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", -+ "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", -+ "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2950", -+ "endColumns": "100", -+ "endOffsets": "3046" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", -+ "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", -+ "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-as/values-as.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2950", -+ "endColumns": "100", -+ "endOffsets": "3046" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-az.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-az.json -new file mode 100644 -index 0000000..0c3e9ee ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-az.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-az/values-az.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", -+ "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", -+ "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", -+ "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", -+ "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-az/values-az.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-b+sr+Latn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-b+sr+Latn.json -new file mode 100644 -index 0000000..df4c6da ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-b+sr+Latn.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", -+ "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", -+ "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2912", -+ "endColumns": "100", -+ "endOffsets": "3008" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", -+ "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", -+ "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-b+sr+Latn/values-b+sr+Latn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2912", -+ "endColumns": "100", -+ "endOffsets": "3008" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-be.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-be.json -new file mode 100644 -index 0000000..31b17e1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-be.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", -+ "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", -+ "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-be/values-be.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", -+ "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", -+ "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-be/values-be.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bg.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bg.json -new file mode 100644 -index 0000000..5aee30c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bg.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2930", -+ "endColumns": "100", -+ "endOffsets": "3026" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", -+ "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", -+ "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-bg/values-bg.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2930", -+ "endColumns": "100", -+ "endOffsets": "3026" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bg/values-bg.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", -+ "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", -+ "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bn.json -new file mode 100644 -index 0000000..e9a6f35 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bn.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", -+ "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", -+ "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2939", -+ "endColumns": "100", -+ "endOffsets": "3035" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-bn/values-bn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", -+ "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", -+ "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bn/values-bn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2939", -+ "endColumns": "100", -+ "endOffsets": "3035" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bs.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bs.json -new file mode 100644 -index 0000000..775d305 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-bs.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-bs/values-bs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", -+ "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", -+ "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", -+ "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", -+ "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-bs/values-bs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ca.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ca.json -new file mode 100644 -index 0000000..82a3e7c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ca.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ca/values-ca.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", -+ "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", -+ "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", -+ "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", -+ "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ca/values-ca.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2915", -+ "endColumns": "100", -+ "endOffsets": "3011" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-cs.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-cs.json -new file mode 100644 -index 0000000..8f2a966 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-cs.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-cs/values-cs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", -+ "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", -+ "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2891", -+ "endColumns": "100", -+ "endOffsets": "2987" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", -+ "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", -+ "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-cs/values-cs.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2891", -+ "endColumns": "100", -+ "endOffsets": "2987" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-da.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-da.json -new file mode 100644 -index 0000000..5c38690 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-da.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-da/values-da.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", -+ "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", -+ "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2844", -+ "endColumns": "100", -+ "endOffsets": "2940" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", -+ "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", -+ "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-da/values-da.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2844", -+ "endColumns": "100", -+ "endOffsets": "2940" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-de.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-de.json -new file mode 100644 -index 0000000..6529d74 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-de.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", -+ "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", -+ "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2925", -+ "endColumns": "100", -+ "endOffsets": "3021" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-de/values-de.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", -+ "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", -+ "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-de/values-de.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2925", -+ "endColumns": "100", -+ "endOffsets": "3021" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-el.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-el.json -new file mode 100644 -index 0000000..498cc55 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-el.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-el/values-el.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", -+ "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", -+ "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2964", -+ "endColumns": "100", -+ "endOffsets": "3060" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", -+ "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", -+ "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-el/values-el.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2964", -+ "endColumns": "100", -+ "endOffsets": "3060" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rAU.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rAU.json -new file mode 100644 -index 0000000..c3a4ed5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rAU.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-en-rAU/values-en-rAU.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rAU/values-en-rAU.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rCA.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rCA.json -new file mode 100644 -index 0000000..c75a614 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rCA.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-en-rCA/values-en-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rCA/values-en-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rGB.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rGB.json -new file mode 100644 -index 0000000..be78619 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rGB.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-en-rGB/values-en-rGB.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rGB/values-en-rGB.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rIN.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rIN.json -new file mode 100644 -index 0000000..308f84e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rIN.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-en-rIN/values-en-rIN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", -+ "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", -+ "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rIN/values-en-rIN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2846", -+ "endColumns": "100", -+ "endOffsets": "2942" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rXC.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rXC.json -new file mode 100644 -index 0000000..6f9334e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-en-rXC.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", -+ "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", -+ "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "202", -+ "endOffsets": "253" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "5682", -+ "endColumns": "202", -+ "endOffsets": "5880" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-en-rXC/values-en-rXC.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", -+ "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", -+ "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-en-rXC/values-en-rXC.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "202", -+ "endOffsets": "253" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "5682", -+ "endColumns": "202", -+ "endOffsets": "5880" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es-rUS.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es-rUS.json -new file mode 100644 -index 0000000..f07ab4f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es-rUS.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-es-rUS/values-es-rUS.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", -+ "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", -+ "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es-rUS/values-es-rUS.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", -+ "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", -+ "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es.json -new file mode 100644 -index 0000000..7233834 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-es.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2924", -+ "endColumns": "100", -+ "endOffsets": "3020" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", -+ "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", -+ "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-es/values-es.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2924", -+ "endColumns": "100", -+ "endOffsets": "3020" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-es/values-es.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", -+ "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", -+ "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-et.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-et.json -new file mode 100644 -index 0000000..4f03b58 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-et.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-et/values-et.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", -+ "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", -+ "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2942", -+ "endColumns": "100", -+ "endOffsets": "3038" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", -+ "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", -+ "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-et/values-et.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2942", -+ "endColumns": "100", -+ "endOffsets": "3038" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-eu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-eu.json -new file mode 100644 -index 0000000..3f618c1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-eu.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-eu/values-eu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", -+ "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", -+ "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2938", -+ "endColumns": "100", -+ "endOffsets": "3034" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", -+ "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", -+ "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-eu/values-eu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2938", -+ "endColumns": "100", -+ "endOffsets": "3034" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fa.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fa.json -new file mode 100644 -index 0000000..4129b15 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fa.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-fa/values-fa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", -+ "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", -+ "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", -+ "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", -+ "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fa/values-fa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fi.json -new file mode 100644 -index 0000000..ec0401a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fi.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2872", -+ "endColumns": "100", -+ "endOffsets": "2968" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", -+ "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", -+ "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-fi/values-fi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2872", -+ "endColumns": "100", -+ "endOffsets": "2968" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fi/values-fi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", -+ "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", -+ "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr-rCA.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr-rCA.json -new file mode 100644 -index 0000000..10acfaf ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr-rCA.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2965", -+ "endColumns": "100", -+ "endOffsets": "3061" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", -+ "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", -+ "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-fr-rCA/values-fr-rCA.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2965", -+ "endColumns": "100", -+ "endOffsets": "3061" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr-rCA/values-fr-rCA.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", -+ "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", -+ "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr.json -new file mode 100644 -index 0000000..15f223e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-fr.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-fr/values-fr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", -+ "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", -+ "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-fr/values-fr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", -+ "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", -+ "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gl.json -new file mode 100644 -index 0000000..b4fd2b4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gl.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", -+ "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", -+ "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-gl/values-gl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2920", -+ "endColumns": "100", -+ "endOffsets": "3016" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gl/values-gl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", -+ "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", -+ "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gu.json -new file mode 100644 -index 0000000..459ffb5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-gu.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", -+ "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", -+ "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-gu/values-gu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-gu/values-gu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", -+ "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", -+ "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-h720dp-v13.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-h720dp-v13.json -new file mode 100644 -index 0000000..7d38262 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-h720dp-v13.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-h720dp-v13/values-h720dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-h720dp-v13/values-h720dp-v13.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "66", -+ "endOffsets": "117" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-h720dp-v13/values-h720dp-v13.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "66", -+ "endOffsets": "117" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hdpi-v4.json -new file mode 100644 -index 0000000..f598987 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hdpi-v4.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hdpi-v4/values-hdpi-v4.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "6", -+ "endColumns": "13", -+ "endOffsets": "327" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-hdpi-v4/values-hdpi-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hdpi-v4/values-hdpi-v4.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "6", -+ "endColumns": "13", -+ "endOffsets": "327" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hi.json -new file mode 100644 -index 0000000..78a2bd3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hi.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-hi/values-hi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", -+ "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", -+ "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2892", -+ "endColumns": "100", -+ "endOffsets": "2988" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", -+ "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", -+ "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hi/values-hi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2892", -+ "endColumns": "100", -+ "endOffsets": "2988" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hr.json -new file mode 100644 -index 0000000..e790b1d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hr.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", -+ "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", -+ "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-hr/values-hr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2926", -+ "endColumns": "100", -+ "endOffsets": "3022" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hr/values-hr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", -+ "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", -+ "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hu.json -new file mode 100644 -index 0000000..6d0e3d3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hu.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", -+ "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", -+ "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2961", -+ "endColumns": "100", -+ "endOffsets": "3057" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-hu/values-hu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", -+ "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", -+ "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hu/values-hu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2961", -+ "endColumns": "100", -+ "endOffsets": "3057" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hy.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hy.json -new file mode 100644 -index 0000000..a3728d2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-hy.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2884", -+ "endColumns": "100", -+ "endOffsets": "2980" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", -+ "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", -+ "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-hy/values-hy.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2884", -+ "endColumns": "100", -+ "endOffsets": "2980" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-hy/values-hy.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", -+ "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", -+ "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-in.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-in.json -new file mode 100644 -index 0000000..5e184a5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-in.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", -+ "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", -+ "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-in/values-in.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-in/values-in.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", -+ "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", -+ "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-is.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-is.json -new file mode 100644 -index 0000000..139b789 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-is.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-is/values-is.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", -+ "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", -+ "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", -+ "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", -+ "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-is/values-is.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-it.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-it.json -new file mode 100644 -index 0000000..c630740 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-it.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-it/values-it.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", -+ "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", -+ "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2906", -+ "endColumns": "100", -+ "endOffsets": "3002" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", -+ "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", -+ "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-it/values-it.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2906", -+ "endColumns": "100", -+ "endOffsets": "3002" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-iw.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-iw.json -new file mode 100644 -index 0000000..8246b15 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-iw.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", -+ "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", -+ "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2832", -+ "endColumns": "100", -+ "endOffsets": "2928" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-iw/values-iw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", -+ "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", -+ "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-iw/values-iw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2832", -+ "endColumns": "100", -+ "endOffsets": "2928" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ja.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ja.json -new file mode 100644 -index 0000000..7b0d6fa ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ja.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ja/values-ja.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", -+ "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", -+ "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2771", -+ "endColumns": "100", -+ "endOffsets": "2867" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", -+ "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", -+ "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ja/values-ja.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2771", -+ "endColumns": "100", -+ "endOffsets": "2867" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ka.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ka.json -new file mode 100644 -index 0000000..08208fd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ka.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ka/values-ka.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", -+ "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", -+ "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2899", -+ "endColumns": "100", -+ "endOffsets": "2995" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", -+ "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", -+ "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ka/values-ka.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2899", -+ "endColumns": "100", -+ "endOffsets": "2995" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kk.json -new file mode 100644 -index 0000000..80b89a9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kk.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-kk/values-kk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2893", -+ "endColumns": "100", -+ "endOffsets": "2989" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", -+ "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", -+ "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2893", -+ "endColumns": "100", -+ "endOffsets": "2989" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kk/values-kk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", -+ "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", -+ "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-km.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-km.json -new file mode 100644 -index 0000000..7a9639a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-km.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", -+ "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", -+ "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-km/values-km.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2882", -+ "endColumns": "100", -+ "endOffsets": "2978" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-km/values-km.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", -+ "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", -+ "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kn.json -new file mode 100644 -index 0000000..547bf86 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-kn.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-kn/values-kn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", -+ "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", -+ "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2948", -+ "endColumns": "100", -+ "endOffsets": "3044" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", -+ "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", -+ "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-kn/values-kn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2948", -+ "endColumns": "100", -+ "endOffsets": "3044" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ko.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ko.json -new file mode 100644 -index 0000000..e20ff2a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ko.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ko/values-ko.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", -+ "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", -+ "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2756", -+ "endColumns": "100", -+ "endOffsets": "2852" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", -+ "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", -+ "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ko/values-ko.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2756", -+ "endColumns": "100", -+ "endOffsets": "2852" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ky.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ky.json -new file mode 100644 -index 0000000..e6c0076 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ky.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ky/values-ky.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", -+ "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", -+ "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", -+ "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", -+ "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ky/values-ky.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-land.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-land.json -new file mode 100644 -index 0000000..56f6abb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-land.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-land/values-land.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-land/values-land.xml", -+ "from": { -+ "startLines": "2,3,4", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,125,196", -+ "endColumns": "69,70,67", -+ "endOffsets": "120,191,259" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-land/values-land.xml", -+ "from": { -+ "startLines": "2,3,4", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,125,196", -+ "endColumns": "69,70,67", -+ "endOffsets": "120,191,259" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-large-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-large-v4.json -new file mode 100644 -index 0000000..2dfba60 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-large-v4.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-large-v4/values-large-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10", -+ "startColumns": "4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,114,185,256,326,396,464,532,636", -+ "endColumns": "58,70,70,69,69,67,67,103,115", -+ "endOffsets": "109,180,251,321,391,459,527,631,747" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-large-v4/values-large-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-large-v4/values-large-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10", -+ "startColumns": "4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,114,185,256,326,396,464,532,636", -+ "endColumns": "58,70,70,69,69,67,67,103,115", -+ "endOffsets": "109,180,251,321,391,459,527,631,747" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ldltr-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ldltr-v21.json -new file mode 100644 -index 0000000..a081c72 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ldltr-v21.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ldltr-v21/values-ldltr-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ldltr-v21/values-ldltr-v21.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "112", -+ "endOffsets": "163" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ldltr-v21/values-ldltr-v21.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "112", -+ "endOffsets": "163" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lo.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lo.json -new file mode 100644 -index 0000000..e685dcd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lo.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", -+ "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", -+ "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2836", -+ "endColumns": "100", -+ "endOffsets": "2932" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-lo/values-lo.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", -+ "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", -+ "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lo/values-lo.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2836", -+ "endColumns": "100", -+ "endOffsets": "2932" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lt.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lt.json -new file mode 100644 -index 0000000..a93bf80 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lt.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", -+ "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", -+ "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2978", -+ "endColumns": "100", -+ "endOffsets": "3074" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-lt/values-lt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", -+ "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", -+ "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lt/values-lt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2978", -+ "endColumns": "100", -+ "endOffsets": "3074" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lv.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lv.json -new file mode 100644 -index 0000000..56809f1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-lv.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "3076", -+ "endColumns": "100", -+ "endOffsets": "3172" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", -+ "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", -+ "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-lv/values-lv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "3076", -+ "endColumns": "100", -+ "endOffsets": "3172" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-lv/values-lv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", -+ "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", -+ "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mk.json -new file mode 100644 -index 0000000..3759f77 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mk.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", -+ "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", -+ "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-mk/values-mk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", -+ "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", -+ "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mk/values-mk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2945", -+ "endColumns": "100", -+ "endOffsets": "3041" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ml.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ml.json -new file mode 100644 -index 0000000..ef11b3b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ml.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ml/values-ml.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", -+ "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", -+ "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2955", -+ "endColumns": "100", -+ "endOffsets": "3051" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", -+ "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", -+ "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ml/values-ml.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2955", -+ "endColumns": "100", -+ "endOffsets": "3051" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mn.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mn.json -new file mode 100644 -index 0000000..61033c9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mn.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-mn/values-mn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", -+ "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", -+ "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2876", -+ "endColumns": "100", -+ "endOffsets": "2972" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", -+ "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", -+ "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mn/values-mn.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2876", -+ "endColumns": "100", -+ "endOffsets": "2972" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mr.json -new file mode 100644 -index 0000000..385b7a6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-mr.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", -+ "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", -+ "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-mr/values-mr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", -+ "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", -+ "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-mr/values-mr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2887", -+ "endColumns": "100", -+ "endOffsets": "2983" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ms.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ms.json -new file mode 100644 -index 0000000..5b832ff ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ms.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2881", -+ "endColumns": "100", -+ "endOffsets": "2977" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", -+ "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", -+ "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ms/values-ms.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2881", -+ "endColumns": "100", -+ "endOffsets": "2977" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ms/values-ms.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", -+ "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", -+ "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-my.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-my.json -new file mode 100644 -index 0000000..f6892ad ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-my.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-my/values-my.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2979", -+ "endColumns": "100", -+ "endOffsets": "3075" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", -+ "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", -+ "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2979", -+ "endColumns": "100", -+ "endOffsets": "3075" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-my/values-my.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", -+ "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", -+ "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nb.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nb.json -new file mode 100644 -index 0000000..0993298 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nb.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", -+ "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", -+ "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2826", -+ "endColumns": "100", -+ "endOffsets": "2922" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-nb/values-nb.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", -+ "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", -+ "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nb/values-nb.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2826", -+ "endColumns": "100", -+ "endOffsets": "2922" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ne.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ne.json -new file mode 100644 -index 0000000..49774fe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ne.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ne/values-ne.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2988", -+ "endColumns": "100", -+ "endOffsets": "3084" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", -+ "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", -+ "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2988", -+ "endColumns": "100", -+ "endOffsets": "3084" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ne/values-ne.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", -+ "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", -+ "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-night-v8.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-night-v8.json -new file mode 100644 -index 0000000..b5df021 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-night-v8.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-night-v8/values-night-v8.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8", -+ "startColumns": "4,4,4,4,4,4,4", -+ "startOffsets": "55,125,209,293,389,491,593", -+ "endColumns": "69,83,83,95,101,101,93", -+ "endOffsets": "120,204,288,384,486,588,682" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-night-v8/values-night-v8.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-night-v8/values-night-v8.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8", -+ "startColumns": "4,4,4,4,4,4,4", -+ "startOffsets": "55,125,209,293,389,491,593", -+ "endColumns": "69,83,83,95,101,101,93", -+ "endOffsets": "120,204,288,384,486,588,682" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nl.json -new file mode 100644 -index 0000000..8c794e8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-nl.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2921", -+ "endColumns": "100", -+ "endOffsets": "3017" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", -+ "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", -+ "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-nl/values-nl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2921", -+ "endColumns": "100", -+ "endOffsets": "3017" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-nl/values-nl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", -+ "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", -+ "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-or.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-or.json -new file mode 100644 -index 0000000..73dfe80 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-or.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-or/values-or.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", -+ "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", -+ "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-or/values-or.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", -+ "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", -+ "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pa.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pa.json -new file mode 100644 -index 0000000..583dd36 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pa.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2839", -+ "endColumns": "100", -+ "endOffsets": "2935" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", -+ "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", -+ "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-pa/values-pa.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2839", -+ "endColumns": "100", -+ "endOffsets": "2935" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pa/values-pa.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", -+ "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", -+ "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pl.json -new file mode 100644 -index 0000000..6bfba1a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pl.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-pl/values-pl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2909", -+ "endColumns": "100", -+ "endOffsets": "3005" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", -+ "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", -+ "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2909", -+ "endColumns": "100", -+ "endOffsets": "3005" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pl/values-pl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", -+ "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", -+ "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-port.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-port.json -new file mode 100644 -index 0000000..8db730a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-port.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-port/values-port.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-port/values-port.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "55", -+ "endOffsets": "106" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-port/values-port.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "55", -+ "endOffsets": "106" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rBR.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rBR.json -new file mode 100644 -index 0000000..2685ba7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rBR.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-pt-rBR/values-pt-rBR.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rBR/values-pt-rBR.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rPT.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rPT.json -new file mode 100644 -index 0000000..1baf781 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt-rPT.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-pt-rPT/values-pt-rPT.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", -+ "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", -+ "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", -+ "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", -+ "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt-rPT/values-pt-rPT.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt.json -new file mode 100644 -index 0000000..a3e7b8f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-pt.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-pt/values-pt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", -+ "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", -+ "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-pt/values-pt.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2929", -+ "endColumns": "100", -+ "endOffsets": "3025" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ro.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ro.json -new file mode 100644 -index 0000000..0780c40 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ro.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ro/values-ro.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", -+ "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", -+ "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2953", -+ "endColumns": "100", -+ "endOffsets": "3049" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", -+ "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", -+ "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ro/values-ro.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2953", -+ "endColumns": "100", -+ "endOffsets": "3049" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ru.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ru.json -new file mode 100644 -index 0000000..4340b30 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ru.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ru/values-ru.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", -+ "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", -+ "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2913", -+ "endColumns": "100", -+ "endOffsets": "3009" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", -+ "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", -+ "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ru/values-ru.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2913", -+ "endColumns": "100", -+ "endOffsets": "3009" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-si.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-si.json -new file mode 100644 -index 0000000..16e5920 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-si.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", -+ "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", -+ "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-si/values-si.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2903", -+ "endColumns": "100", -+ "endOffsets": "2999" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-si/values-si.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", -+ "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", -+ "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sk.json -new file mode 100644 -index 0000000..65c5908 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sk.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sk/values-sk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2918", -+ "endColumns": "100", -+ "endOffsets": "3014" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", -+ "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", -+ "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2918", -+ "endColumns": "100", -+ "endOffsets": "3014" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sk/values-sk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", -+ "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", -+ "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sl.json -new file mode 100644 -index 0000000..987992b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sl.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", -+ "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", -+ "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sl/values-sl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", -+ "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", -+ "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sl/values-sl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2936", -+ "endColumns": "100", -+ "endOffsets": "3032" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sq.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sq.json -new file mode 100644 -index 0000000..a4b5e73 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sq.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2907", -+ "endColumns": "100", -+ "endOffsets": "3003" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", -+ "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", -+ "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sq/values-sq.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2907", -+ "endColumns": "100", -+ "endOffsets": "3003" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sq/values-sq.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", -+ "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", -+ "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sr.json -new file mode 100644 -index 0000000..389d482 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sr.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2905", -+ "endColumns": "100", -+ "endOffsets": "3001" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", -+ "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", -+ "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sr/values-sr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2905", -+ "endColumns": "100", -+ "endOffsets": "3001" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sr/values-sr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", -+ "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", -+ "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sv.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sv.json -new file mode 100644 -index 0000000..c20859c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sv.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", -+ "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", -+ "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2863", -+ "endColumns": "100", -+ "endOffsets": "2959" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sv/values-sv.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", -+ "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", -+ "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sv/values-sv.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2863", -+ "endColumns": "100", -+ "endOffsets": "2959" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw.json -new file mode 100644 -index 0000000..3efd746 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sw/values-sw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", -+ "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", -+ "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2883", -+ "endColumns": "100", -+ "endOffsets": "2979" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw/values-sw.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", -+ "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", -+ "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw600dp-v13.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw600dp-v13.json -new file mode 100644 -index 0000000..2ce31b2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-sw600dp-v13.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9", -+ "startColumns": "4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,193,263,337,413,472,543", -+ "endColumns": "68,68,69,73,75,58,70,67", -+ "endOffsets": "119,188,258,332,408,467,538,606" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-sw600dp-v13/values-sw600dp-v13.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9", -+ "startColumns": "4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,193,263,337,413,472,543", -+ "endColumns": "68,68,69,73,75,58,70,67", -+ "endOffsets": "119,188,258,332,408,467,538,606" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ta.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ta.json -new file mode 100644 -index 0000000..7808755 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ta.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ta/values-ta.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", -+ "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", -+ "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2954", -+ "endColumns": "100", -+ "endOffsets": "3050" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", -+ "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", -+ "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ta/values-ta.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2954", -+ "endColumns": "100", -+ "endOffsets": "3050" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-te.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-te.json -new file mode 100644 -index 0000000..1f2eec2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-te.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-te/values-te.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", -+ "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", -+ "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2946", -+ "endColumns": "100", -+ "endOffsets": "3042" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", -+ "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", -+ "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-te/values-te.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2946", -+ "endColumns": "100", -+ "endOffsets": "3042" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-th.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-th.json -new file mode 100644 -index 0000000..dc9c194 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-th.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-th/values-th.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", -+ "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", -+ "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2845", -+ "endColumns": "100", -+ "endOffsets": "2941" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", -+ "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", -+ "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-th/values-th.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2845", -+ "endColumns": "100", -+ "endOffsets": "2941" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tl.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tl.json -new file mode 100644 -index 0000000..ad882e1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tl.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-tl/values-tl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", -+ "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", -+ "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2949", -+ "endColumns": "100", -+ "endOffsets": "3045" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tl/values-tl.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", -+ "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", -+ "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tr.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tr.json -new file mode 100644 -index 0000000..5222a01 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-tr.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", -+ "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", -+ "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-tr/values-tr.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", -+ "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", -+ "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-tr/values-tr.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2865", -+ "endColumns": "100", -+ "endOffsets": "2961" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uk.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uk.json -new file mode 100644 -index 0000000..8a05182 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uk.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", -+ "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", -+ "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2900", -+ "endColumns": "100", -+ "endOffsets": "2996" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-uk/values-uk.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", -+ "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", -+ "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uk/values-uk.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2900", -+ "endColumns": "100", -+ "endOffsets": "2996" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ur.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ur.json -new file mode 100644 -index 0000000..2da3d6b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-ur.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-ur/values-ur.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", -+ "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", -+ "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2904", -+ "endColumns": "100", -+ "endOffsets": "3000" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", -+ "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", -+ "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-ur/values-ur.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2904", -+ "endColumns": "100", -+ "endOffsets": "3000" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uz.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uz.json -new file mode 100644 -index 0000000..d381f41 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-uz.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2889", -+ "endColumns": "100", -+ "endOffsets": "2985" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", -+ "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", -+ "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-uz/values-uz.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2889", -+ "endColumns": "100", -+ "endOffsets": "2985" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-uz/values-uz.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", -+ "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", -+ "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v16.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v16.json -new file mode 100644 -index 0000000..f4145c5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v16.json -@@ -0,0 +1,72 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "65", -+ "endOffsets": "116" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "5", -+ "endColumns": "12", -+ "endOffsets": "223" -+ }, -+ "to": { -+ "startLines": "3", -+ "startColumns": "4", -+ "startOffsets": "121", -+ "endLines": "6", -+ "endColumns": "12", -+ "endOffsets": "289" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v16/values-v16.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "65", -+ "endOffsets": "116" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v16/values-v16.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endLines": "5", -+ "endColumns": "12", -+ "endOffsets": "223" -+ }, -+ "to": { -+ "startLines": "3", -+ "startColumns": "4", -+ "startOffsets": "121", -+ "endLines": "6", -+ "endColumns": "12", -+ "endOffsets": "289" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v17.json -new file mode 100644 -index 0000000..b392fd9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v17.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v17/values-v17.xml", -+ "from": { -+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", -+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", -+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", -+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v17/values-v17.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v17/values-v17.xml", -+ "from": { -+ "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", -+ "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", -+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", -+ "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v18.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v18.json -new file mode 100644 -index 0000000..c19b888 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v18.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v18/values-v18.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v18/values-v18.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "48", -+ "endOffsets": "99" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v18/values-v18.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "48", -+ "endOffsets": "99" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v21.json -new file mode 100644 -index 0000000..89a0fc4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v21.json -@@ -0,0 +1,90 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,13", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,354,470,596,722,850,1022", -+ "endLines": "2,3,4,5,6,7,8,9,12,17", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" -+ }, -+ "to": { -+ "startLines": "2,3,4,5,263,264,265,266,267,270", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", -+ "endLines": "2,3,4,5,263,264,265,266,269,274", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" -+ }, -+ "to": { -+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", -+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v21/values-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,13", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,354,470,596,722,850,1022", -+ "endLines": "2,3,4,5,6,7,8,9,12,17", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" -+ }, -+ "to": { -+ "startLines": "2,3,4,5,263,264,265,266,267,270", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,159,223,290,19262,19378,19504,19630,19758,19930", -+ "endLines": "2,3,4,5,263,264,265,266,269,274", -+ "endColumns": "103,63,66,63,115,125,125,127,12,12", -+ "endOffsets": "154,218,285,349,19373,19499,19625,19753,19925,20263" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v21/values-v21.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" -+ }, -+ "to": { -+ "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", -+ "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", -+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", -+ "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v22.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v22.json -new file mode 100644 -index 0000000..3d9e781 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v22.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v22/values-v22.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v22/values-v22.xml", -+ "from": { -+ "startLines": "2,3,4,9", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,553", -+ "endLines": "2,3,8,13", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,548,896" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v22/values-v22.xml", -+ "from": { -+ "startLines": "2,3,4,9", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,553", -+ "endLines": "2,3,8,13", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,548,896" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v23.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v23.json -new file mode 100644 -index 0000000..72f8dc3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v23.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v23/values-v23.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v23/values-v23.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,19,32,33,34,35,36", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", -+ "endLines": "2,3,4,5,18,31,32,33,34,35,36", -+ "endColumns": "134,134,74,86,12,12,126,104,114,106,112", -+ "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v23/values-v23.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,19,32,33,34,35,36", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", -+ "endLines": "2,3,4,5,18,31,32,33,34,35,36", -+ "endColumns": "134,134,74,86,12,12,126,104,114,106,112", -+ "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v24.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v24.json -new file mode 100644 -index 0000000..85da465 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v24.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v24/values-v24.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v24/values-v24.xml", -+ "from": { -+ "startLines": "2,3", -+ "startColumns": "4,4", -+ "startOffsets": "55,212", -+ "endColumns": "156,134", -+ "endOffsets": "207,342" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v24/values-v24.xml", -+ "from": { -+ "startLines": "2,3", -+ "startColumns": "4,4", -+ "startOffsets": "55,212", -+ "endColumns": "156,134", -+ "endOffsets": "207,342" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v25.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v25.json -new file mode 100644 -index 0000000..a1ebe89 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v25.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v25/values-v25.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v25/values-v25.xml", -+ "from": { -+ "startLines": "2,3,4,6", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,126,209,308", -+ "endLines": "2,3,5,7", -+ "endColumns": "70,82,12,12", -+ "endOffsets": "121,204,303,414" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v25/values-v25.xml", -+ "from": { -+ "startLines": "2,3,4,6", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,126,209,308", -+ "endLines": "2,3,5,7", -+ "endColumns": "70,82,12,12", -+ "endOffsets": "121,204,303,414" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v26.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v26.json -new file mode 100644 -index 0000000..3b1e54e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v26.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v26/values-v26.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v26/values-v26.xml", -+ "from": { -+ "startLines": "2,3,4,8,12,16", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,130,217,431,657,896", -+ "endLines": "2,3,7,11,15,16", -+ "endColumns": "74,86,12,12,12,92", -+ "endOffsets": "125,212,426,652,891,984" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v26/values-v26.xml", -+ "from": { -+ "startLines": "2,3,4,8,12,16", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,130,217,431,657,896", -+ "endLines": "2,3,7,11,15,16", -+ "endColumns": "74,86,12,12,12,92", -+ "endOffsets": "125,212,426,652,891,984" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v28.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v28.json -new file mode 100644 -index 0000000..fda5db4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-v28.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-v28/values-v28.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v28/values-v28.xml", -+ "from": { -+ "startLines": "2,3,4,8", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,447", -+ "endLines": "2,3,7,11", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,442,684" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-v28/values-v28.xml", -+ "from": { -+ "startLines": "2,3,4,8", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,130,217,447", -+ "endLines": "2,3,7,11", -+ "endColumns": "74,86,12,12", -+ "endOffsets": "125,212,442,684" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-vi.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-vi.json -new file mode 100644 -index 0000000..c9aa10d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-vi.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", -+ "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", -+ "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2901", -+ "endColumns": "100", -+ "endOffsets": "2997" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-vi/values-vi.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", -+ "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", -+ "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-vi/values-vi.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2901", -+ "endColumns": "100", -+ "endOffsets": "2997" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v20.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v20.json -new file mode 100644 -index 0000000..b5ece8c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v20.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v20/values-watch-v20.xml", -+ "from": { -+ "startLines": "2,5,8", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,214,385", -+ "endLines": "4,7,10", -+ "endColumns": "12,12,12", -+ "endOffsets": "209,380,553" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-watch-v20/values-watch-v20.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v20/values-watch-v20.xml", -+ "from": { -+ "startLines": "2,5,8", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,214,385", -+ "endLines": "4,7,10", -+ "endColumns": "12,12,12", -+ "endOffsets": "209,380,553" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v21.json -new file mode 100644 -index 0000000..96f0da2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-watch-v21.json -@@ -0,0 +1,36 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-watch-v21/values-watch-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v21/values-watch-v21.xml", -+ "from": { -+ "startLines": "2,6,10", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,271,499", -+ "endLines": "5,9,13", -+ "endColumns": "12,12,12", -+ "endOffsets": "266,494,724" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-watch-v21/values-watch-v21.xml", -+ "from": { -+ "startLines": "2,6,10", -+ "startColumns": "4,4,4", -+ "startOffsets": "55,271,499", -+ "endLines": "5,9,13", -+ "endColumns": "12,12,12", -+ "endOffsets": "266,494,724" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-xlarge-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-xlarge-v4.json -new file mode 100644 -index 0000000..b500cc8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-xlarge-v4.json -@@ -0,0 +1,34 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-xlarge-v4/values-xlarge-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-xlarge-v4/values-xlarge-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,126,197,267,337,405", -+ "endColumns": "70,70,69,69,67,67", -+ "endOffsets": "121,192,262,332,400,468" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-xlarge-v4/values-xlarge-v4.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7", -+ "startColumns": "4,4,4,4,4,4", -+ "startOffsets": "55,126,197,267,337,405", -+ "endColumns": "70,70,69,69,67,67", -+ "endOffsets": "121,192,262,332,400,468" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rCN.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rCN.json -new file mode 100644 -index 0000000..e91360f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rCN.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", -+ "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", -+ "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2744", -+ "endColumns": "100", -+ "endOffsets": "2840" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-zh-rCN/values-zh-rCN.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", -+ "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", -+ "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rCN/values-zh-rCN.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2744", -+ "endColumns": "100", -+ "endOffsets": "2840" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rHK.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rHK.json -new file mode 100644 -index 0000000..1c0dab8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rHK.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2746", -+ "endColumns": "100", -+ "endOffsets": "2842" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-zh-rHK/values-zh-rHK.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rHK/values-zh-rHK.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2746", -+ "endColumns": "100", -+ "endOffsets": "2842" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rTW.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rTW.json -new file mode 100644 -index 0000000..c386769 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zh-rTW.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-zh-rTW/values-zh-rTW.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2753", -+ "endColumns": "100", -+ "endOffsets": "2849" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", -+ "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", -+ "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zh-rTW/values-zh-rTW.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2753", -+ "endColumns": "100", -+ "endOffsets": "2849" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zu.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zu.json -new file mode 100644 -index 0000000..7a60691 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values-zu.json -@@ -0,0 +1,68 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values-zu/values-zu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", -+ "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", -+ "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2898", -+ "endColumns": "100", -+ "endOffsets": "2994" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", -+ "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", -+ "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values-zu/values-zu.xml", -+ "from": { -+ "startLines": "2", -+ "startColumns": "4", -+ "startOffsets": "55", -+ "endColumns": "100", -+ "endOffsets": "151" -+ }, -+ "to": { -+ "startLines": "30", -+ "startColumns": "4", -+ "startOffsets": "2898", -+ "endColumns": "100", -+ "endOffsets": "2994" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values.json -new file mode 100644 -index 0000000..fcb37fe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/multi-v2/values.json -@@ -0,0 +1,204 @@ -+{ -+ "logs": [ -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,74,78,81,84,88,92,95,98,99,100,109,116,123,126,129,132,138", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "100,163,226,277,325,374,422,471,520,563,617,665,729,798,871,946,1069,1165,1254,1362,1479,1599,1719,1821,1924,2035,2142,2245,2356,2525,2693,2810,2914,3027,3183,3291,3404,3495,3606,3775,3873,4000,4125,4220,4327,4407,4483,4556,4643,4714,4785,4863,4943,5029,5113,5185,5267,5348,5432,5509,5596,5681,5760,5835,5908,5985,6063,6136,6214,6462,6710,6913,7104,7306,7512,7713,7902,7928,7963,8501,8919,9297,9474,9653,9836,10201", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,87,91,94,97,98,99,108,115,122,125,128,131,137,147", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "158,221,272,320,369,417,466,515,558,612,660,724,793,866,941,1064,1160,1249,1357,1474,1594,1714,1816,1919,2030,2137,2240,2351,2520,2688,2805,2909,3022,3178,3286,3399,3490,3601,3770,3868,3995,4120,4215,4322,4402,4478,4551,4638,4709,4780,4858,4938,5024,5108,5180,5262,5343,5427,5504,5591,5676,5755,5830,5903,5980,6058,6131,6209,6457,6705,6908,7099,7301,7507,7708,7897,7923,7958,8496,8914,9292,9469,9648,9831,10196,10637" -+ }, -+ "to": { -+ "startLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,324,328,1392,1395,1398,1402,1599,1602,1678,1708,1709,1718,1725,1732,1735,1738,1741,1853", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "1985,2048,12970,13021,13069,13118,13166,13215,13669,14062,14116,14407,14471,17368,17441,17516,17639,17735,17824,17932,18049,18169,18289,18391,18494,18605,18712,18815,18926,19095,19263,19380,19484,19597,19753,19861,19974,20065,20176,20345,20443,20570,20695,20790,20897,20977,21053,21126,21213,21284,21355,21433,21513,21599,21683,21755,21837,21971,22055,22132,22219,22304,22383,22458,22602,22679,22757,22830,23350,23598,91773,91976,92167,92369,106058,106259,113348,115530,115565,116103,116521,116899,117076,117255,117438,126329", -+ "endLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,327,331,1394,1397,1401,1405,1601,1604,1678,1708,1717,1724,1731,1734,1737,1740,1746,1862", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "2043,2106,13016,13064,13113,13161,13210,13259,13707,14111,14159,14466,14535,17436,17511,17634,17730,17819,17927,18044,18164,18284,18386,18489,18600,18707,18810,18921,19090,19258,19375,19479,19592,19748,19856,19969,20060,20171,20340,20438,20565,20690,20785,20892,20972,21048,21121,21208,21279,21350,21428,21508,21594,21678,21750,21832,21913,22050,22127,22214,22299,22378,22453,22526,22674,22752,22825,22903,23593,23841,91971,92162,92364,92570,106254,106443,113369,115560,116098,116516,116894,117071,117250,117433,117798,126765" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/c3903e74c0a2f78a9ce6b238f654896f/jetified-drawee-2.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,141", -+ "startColumns": "4,4", -+ "startOffsets": "55,6070", -+ "endLines": "140,231", -+ "endColumns": "22,22", -+ "endOffsets": "6065,9761" -+ }, -+ "to": { -+ "startLines": "2749,3217", -+ "startColumns": "4,4", -+ "startOffsets": "175950,198373", -+ "endLines": "2887,3307", -+ "endColumns": "22,22", -+ "endOffsets": "181960,202064" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" -+ }, -+ "to": { -+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,332,340,341,345,349,353,358,364,371,375,379,384,388,392,396,400,404,408,414,418,424,428,434,438,443,447,450,454,460,464,470,474,480,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,822,848,1017,1043,1074,1082,1088,1102,1124,1129,1134,1144,1153,1162,1166,1173,1181,1188,1189,1198,1201,1204,1208,1212,1216,1219,1220,1224,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1386,1387,1406,1464,1523,1524,1534,1543,1544,1546,1550,1553,1556,1559,1562,1565,1568,1571,1575,1578,1581,1584,1588,1591,1595,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1627,1629,1630,1631,1632,1633,1634,1635,1636,1638,1639,1641,1642,1644,1646,1647,1649,1650,1651,1652,1653,1654,1656,1657,1658,1659,1660,1672,1674,1676,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1693,1694,1695,1696,1697,1698,1700,1704,1747,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1863,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2531,2656,2932,2968,2974,2980,3003,3144,3164,3170,3174,3180,3308,3320,3347,3352,3418,3433,3498,3517,3543", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2111,2185,2260,2325,2391,2451,2512,2584,2657,2724,2792,2851,2910,2969,3028,3087,3141,3195,3248,3302,3356,3410,3596,3670,3749,3822,3896,3967,4039,4111,4184,4241,4299,4372,4446,4520,4595,4667,4740,4810,4881,4941,5002,5071,5140,5210,5284,5360,5424,5501,5577,5654,5719,5788,5865,5940,6009,6077,6154,6220,6281,6378,6443,6512,6611,6682,6741,6799,6856,6915,6979,7050,7122,7194,7266,7338,7405,7473,7541,7600,7663,7727,7817,7908,7968,8034,8101,8167,8237,8301,8354,8467,8525,8588,8653,8718,8793,8866,8938,8987,9048,9109,9170,9232,9296,9360,9424,9489,9552,9612,9673,9739,9798,9858,9920,9991,10051,10607,10693,10780,10870,10957,11045,11127,11210,11300,12369,12421,12479,12524,12590,12654,12711,12768,13264,13321,13369,13418,13469,13573,13620,13712,14030,14164,14228,14290,14350,14610,14684,14754,14832,14886,14956,15041,15089,15135,15206,15284,15362,15434,15508,15582,15656,15736,15809,15878,15950,16027,16088,16151,16217,16281,16352,16415,16480,16544,16605,16666,16718,16791,16865,16934,17009,17083,17157,17298,21918,22908,22986,23076,23164,23260,23846,24428,24517,24764,25045,25297,25582,25975,26452,26674,26896,27172,27399,27629,27859,28089,28319,28546,28965,29191,29616,29846,30274,30493,30776,30984,31115,31342,31768,31993,32420,32641,33066,33186,33462,33763,34087,34378,34692,34829,34960,35065,35307,35474,35678,35886,36157,36269,36381,36486,36603,36817,36963,37103,37189,37537,37625,37871,38289,38538,38620,38718,39335,39435,39687,40111,40366,40460,40549,40786,42838,43080,43182,43435,45619,56340,57856,68676,70204,71961,72587,73007,74068,75333,75589,75825,76372,76866,77471,77669,78249,78813,79188,79306,79844,80001,80197,80470,80726,80896,81037,81101,81383,81669,82345,82609,82947,83300,83394,83580,83886,84148,84273,84400,84639,84850,84969,85162,85339,85794,85975,86097,86356,86469,86656,86758,86865,86994,87269,87777,88273,89150,89444,90014,90163,90895,91067,91403,91495,92575,96919,101406,101468,102098,102712,102803,102916,103145,103305,103457,103628,103794,103963,104130,104293,104536,104706,104879,105050,105324,105523,105728,106448,106532,106628,106724,106822,106922,107024,107126,107228,107330,107432,107532,107628,107740,107869,107992,108123,108254,108352,108466,108560,108700,108834,108930,109042,109142,109258,109354,109466,109566,109706,109842,110006,110136,110294,110444,110585,110729,110864,110976,111126,111254,111382,111518,111650,111780,111910,112022,112920,113066,113210,113374,113440,113530,113606,113710,113800,113902,114010,114118,114218,114298,114390,114488,114598,114676,114782,114874,114978,115088,115210,115373,117803,117883,117983,118073,118183,118277,118383,118475,118575,118687,118801,118917,119033,119127,119241,119353,119455,119575,119697,119779,119883,120003,120129,120227,120321,120409,120521,120637,120759,120871,121046,121162,121248,121340,121452,121576,121643,121769,121837,121965,122109,122237,122306,122401,122516,122629,122728,122837,122948,123059,123160,123265,123365,123495,123586,123709,123803,123915,124001,124105,124201,124289,124407,124511,124615,124741,124829,124937,125037,125127,125237,125321,125423,125507,125561,125625,125731,125841,125925,126770,131914,132032,132147,132279,132994,133686,134203,135850,136235,136832,138431,139964,140352,142659,162177,162735,169946,184102,186115,186377,186733,187563,194345,195479,195773,195996,196323,202069,202717,204350,204620,208471,209072,212881,214096,215505", -+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,339,340,344,348,352,357,363,370,374,378,383,387,391,395,399,403,407,413,417,423,427,433,437,442,446,449,453,459,463,469,473,479,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,821,847,1016,1042,1073,1081,1087,1101,1123,1128,1133,1143,1152,1161,1165,1172,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1223,1227,1237,1242,1249,1255,1256,1259,1263,1268,1270,1272,1275,1278,1280,1284,1287,1294,1297,1300,1304,1306,1310,1312,1314,1316,1320,1328,1336,1348,1354,1363,1366,1377,1380,1385,1386,1391,1463,1522,1523,1533,1542,1543,1545,1549,1552,1555,1558,1561,1564,1567,1570,1574,1577,1580,1583,1587,1590,1594,1598,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1626,1628,1629,1630,1631,1632,1633,1634,1635,1637,1638,1640,1641,1643,1645,1646,1648,1649,1650,1651,1652,1653,1655,1656,1657,1658,1659,1660,1673,1675,1677,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1692,1693,1694,1695,1696,1697,1699,1703,1707,1747,1748,1749,1750,1751,1752,1753,1755,1757,1759,1761,1763,1764,1765,1766,1768,1770,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1786,1787,1788,1789,1791,1793,1794,1796,1797,1799,1801,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1819,1821,1822,1823,1824,1825,1827,1829,1831,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1945,1948,1951,1954,1968,1979,1989,2016,2023,2034,2064,2091,2100,2137,2518,2523,2556,2673,2967,2973,2979,3002,3143,3163,3169,3173,3179,3216,3319,3346,3351,3417,3432,3497,3516,3542,3551", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2180,2255,2320,2386,2446,2507,2579,2652,2719,2787,2846,2905,2964,3023,3082,3136,3190,3243,3297,3351,3405,3459,3665,3744,3817,3891,3962,4034,4106,4179,4236,4294,4367,4441,4515,4590,4662,4735,4805,4876,4936,4997,5066,5135,5205,5279,5355,5419,5496,5572,5649,5714,5783,5860,5935,6004,6072,6149,6215,6276,6373,6438,6507,6606,6677,6736,6794,6851,6910,6974,7045,7117,7189,7261,7333,7400,7468,7536,7595,7658,7722,7812,7903,7963,8029,8096,8162,8232,8296,8349,8462,8520,8583,8648,8713,8788,8861,8933,8982,9043,9104,9165,9227,9291,9355,9419,9484,9547,9607,9668,9734,9793,9853,9915,9986,10046,10114,10688,10775,10865,10952,11040,11122,11205,11295,11386,12416,12474,12519,12585,12649,12706,12763,12817,13316,13364,13413,13464,13498,13615,13664,13753,14057,14223,14285,14345,14402,14679,14749,14827,14881,14951,15036,15084,15130,15201,15279,15357,15429,15503,15577,15651,15731,15804,15873,15945,16022,16083,16146,16212,16276,16347,16410,16475,16539,16600,16661,16713,16786,16860,16929,17004,17078,17152,17293,17363,21966,22981,23071,23159,23255,23345,24423,24512,24759,25040,25292,25577,25970,26447,26669,26891,27167,27394,27624,27854,28084,28314,28541,28960,29186,29611,29841,30269,30488,30771,30979,31110,31337,31763,31988,32415,32636,33061,33181,33457,33758,34082,34373,34687,34824,34955,35060,35302,35469,35673,35881,36152,36264,36376,36481,36598,36812,36958,37098,37184,37532,37620,37866,38284,38533,38615,38713,39330,39430,39682,40106,40361,40455,40544,40781,42833,43075,43177,43430,45614,56335,57851,68671,70199,71956,72582,73002,74063,75328,75584,75820,76367,76861,77466,77664,78244,78808,79183,79301,79839,79996,80192,80465,80721,80891,81032,81096,81378,81664,82340,82604,82942,83295,83389,83575,83881,84143,84268,84395,84634,84845,84964,85157,85334,85789,85970,86092,86351,86464,86651,86753,86860,86989,87264,87772,88268,89145,89439,90009,90158,90890,91062,91398,91490,91768,96914,101401,101463,102093,102707,102798,102911,103140,103300,103452,103623,103789,103958,104125,104288,104531,104701,104874,105045,105319,105518,105723,106053,106527,106623,106719,106817,106917,107019,107121,107223,107325,107427,107527,107623,107735,107864,107987,108118,108249,108347,108461,108555,108695,108829,108925,109037,109137,109253,109349,109461,109561,109701,109837,110001,110131,110289,110439,110580,110724,110859,110971,111121,111249,111377,111513,111645,111775,111905,112017,112157,113061,113205,113343,113435,113525,113601,113705,113795,113897,114005,114113,114213,114293,114385,114483,114593,114671,114777,114869,114973,115083,115205,115368,115525,117878,117978,118068,118178,118272,118378,118470,118570,118682,118796,118912,119028,119122,119236,119348,119450,119570,119692,119774,119878,119998,120124,120222,120316,120404,120516,120632,120754,120866,121041,121157,121243,121335,121447,121571,121638,121764,121832,121960,122104,122232,122301,122396,122511,122624,122723,122832,122943,123054,123155,123260,123360,123490,123581,123704,123798,123910,123996,124100,124196,124284,124402,124506,124610,124736,124824,124932,125032,125122,125232,125316,125418,125502,125556,125620,125726,125836,125920,126040,131909,132027,132142,132274,132989,133681,134198,135845,136230,136827,138426,139959,140347,142654,162172,162432,164122,170974,186110,186372,186728,187558,194340,195474,195768,195991,196318,198368,202712,204345,204615,208466,209067,212876,214091,215500,215974" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", -+ "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" -+ }, -+ "to": { -+ "startLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1662,1666,1667,1671,1848,1849,2524,2674,2717,2888,2925", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "3464,3533,10119,10189,10257,10329,10399,10460,10534,11391,11452,11513,11575,11639,11701,11762,11830,11930,11990,12056,12129,12198,12255,12307,12822,12894,13503,13538,13758,13808,13869,13926,13960,13995,14540,22531,112162,112279,112480,112590,112791,126045,126117,162437,170979,173885,181965,183725", -+ "endLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1665,1666,1670,1671,1848,1849,2530,2716,2748,2924,2931", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "3528,3591,10184,10252,10324,10394,10455,10529,10602,11447,11508,11570,11634,11696,11757,11825,11925,11985,12051,12124,12193,12250,12302,12364,12889,12965,13533,13568,13803,13864,13921,13955,13990,14025,14605,22597,112274,112475,112585,112786,112915,126112,126179,162730,173880,175945,183720,184097" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/70a4d59d737c9f8fe9a6cc82e0450ccb/coordinatorlayout-1.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,102,3,13", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,5935,116,724", -+ "endLines": "2,104,12,101", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "111,6075,719,5930" -+ }, -+ "to": { -+ "startLines": "2,1850,2557,2567", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "150,126184,164127,164735", -+ "endLines": "2,1852,2566,2655", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "206,126324,164730,169941" -+ } -+ } -+ ] -+ }, -+ { -+ "outputFile": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/values/values.xml", -+ "map": [ -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,74,78,81,84,88,92,95,98,99,100,109,116,123,126,129,132,138", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "100,163,226,277,325,374,422,471,520,563,617,665,729,798,871,946,1069,1165,1254,1362,1479,1599,1719,1821,1924,2035,2142,2245,2356,2525,2693,2810,2914,3027,3183,3291,3404,3495,3606,3775,3873,4000,4125,4220,4327,4407,4483,4556,4643,4714,4785,4863,4943,5029,5113,5185,5267,5348,5432,5509,5596,5681,5760,5835,5908,5985,6063,6136,6214,6462,6710,6913,7104,7306,7512,7713,7902,7928,7963,8501,8919,9297,9474,9653,9836,10201", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,73,77,80,83,87,91,94,97,98,99,108,115,122,125,128,131,137,147", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "158,221,272,320,369,417,466,515,558,612,660,724,793,866,941,1064,1160,1249,1357,1474,1594,1714,1816,1919,2030,2137,2240,2351,2520,2688,2805,2909,3022,3178,3286,3399,3490,3601,3770,3868,3995,4120,4215,4322,4402,4478,4551,4638,4709,4780,4858,4938,5024,5108,5180,5262,5343,5427,5504,5591,5676,5755,5830,5903,5980,6058,6131,6209,6457,6705,6908,7099,7301,7507,7708,7897,7923,7958,8496,8914,9292,9469,9648,9831,10196,10637" -+ }, -+ "to": { -+ "startLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,324,328,1392,1395,1398,1402,1599,1602,1678,1708,1709,1718,1725,1732,1735,1738,1741,1853", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "1985,2048,12970,13021,13069,13118,13166,13215,13669,14062,14116,14407,14471,17368,17441,17516,17639,17735,17824,17932,18049,18169,18289,18391,18494,18605,18712,18815,18926,19095,19263,19380,19484,19597,19753,19861,19974,20065,20176,20345,20443,20570,20695,20790,20897,20977,21053,21126,21213,21284,21355,21433,21513,21599,21683,21755,21837,21971,22055,22132,22219,22304,22383,22458,22602,22679,22757,22830,23350,23598,91773,91976,92167,92369,106058,106259,113348,115530,115565,116103,116521,116899,117076,117255,117438,126329", -+ "endLines": "28,29,190,191,192,193,194,195,205,214,215,220,221,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307,308,309,310,311,312,313,315,316,317,318,327,331,1394,1397,1401,1405,1601,1604,1678,1708,1717,1724,1731,1734,1737,1740,1746,1862", -+ "endColumns": "62,62,50,47,48,47,48,48,42,53,47,63,68,72,74,122,95,88,107,116,119,119,101,102,110,106,102,110,168,167,116,103,112,155,107,112,90,110,168,97,126,124,94,106,79,75,72,86,70,70,77,79,85,83,71,81,80,83,76,86,84,78,74,72,76,77,72,77,10,10,12,12,10,10,12,12,25,34,10,10,10,10,10,12,12,10", -+ "endOffsets": "2043,2106,13016,13064,13113,13161,13210,13259,13707,14111,14159,14466,14535,17436,17511,17634,17730,17819,17927,18044,18164,18284,18386,18489,18600,18707,18810,18921,19090,19258,19375,19479,19592,19748,19856,19969,20060,20171,20340,20438,20565,20690,20785,20892,20972,21048,21121,21208,21279,21350,21428,21508,21594,21678,21750,21832,21913,22050,22127,22214,22299,22378,22453,22526,22674,22752,22825,22903,23593,23841,91971,92162,92364,92570,106254,106443,113369,115560,116098,116516,116894,117071,117250,117433,117798,126765" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/c3903e74c0a2f78a9ce6b238f654896f/jetified-drawee-2.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,141", -+ "startColumns": "4,4", -+ "startOffsets": "55,6070", -+ "endLines": "140,231", -+ "endColumns": "22,22", -+ "endOffsets": "6065,9761" -+ }, -+ "to": { -+ "startLines": "2749,3217", -+ "startColumns": "4,4", -+ "startOffsets": "175950,198373", -+ "endLines": "2887,3307", -+ "endColumns": "22,22", -+ "endOffsets": "181960,202064" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", -+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" -+ }, -+ "to": { -+ "startLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,332,340,341,345,349,353,358,364,371,375,379,384,388,392,396,400,404,408,414,418,424,428,434,438,443,447,450,454,460,464,470,474,480,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,822,848,1017,1043,1074,1082,1088,1102,1124,1129,1134,1144,1153,1162,1166,1173,1181,1188,1189,1198,1201,1204,1208,1212,1216,1219,1220,1224,1228,1238,1243,1250,1256,1257,1260,1264,1269,1271,1273,1276,1279,1281,1285,1288,1295,1298,1301,1305,1307,1311,1313,1315,1317,1321,1329,1337,1349,1355,1364,1367,1378,1381,1386,1387,1406,1464,1523,1524,1534,1543,1544,1546,1550,1553,1556,1559,1562,1565,1568,1571,1575,1578,1581,1584,1588,1591,1595,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1627,1629,1630,1631,1632,1633,1634,1635,1636,1638,1639,1641,1642,1644,1646,1647,1649,1650,1651,1652,1653,1654,1656,1657,1658,1659,1660,1672,1674,1676,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1693,1694,1695,1696,1697,1698,1700,1704,1747,1748,1749,1750,1751,1752,1753,1754,1756,1758,1760,1762,1764,1765,1766,1767,1769,1771,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1787,1788,1789,1790,1792,1794,1795,1797,1798,1800,1802,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1817,1818,1819,1820,1822,1823,1824,1825,1826,1828,1830,1832,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1863,1946,1949,1952,1955,1969,1980,1990,2017,2024,2035,2065,2092,2101,2138,2519,2531,2656,2932,2968,2974,2980,3003,3144,3164,3170,3174,3180,3308,3320,3347,3352,3418,3433,3498,3517,3543", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "211,266,311,360,401,456,515,577,658,719,794,870,947,1025,1110,1192,1268,1344,1421,1499,1605,1711,1790,1870,1927,2111,2185,2260,2325,2391,2451,2512,2584,2657,2724,2792,2851,2910,2969,3028,3087,3141,3195,3248,3302,3356,3410,3596,3670,3749,3822,3896,3967,4039,4111,4184,4241,4299,4372,4446,4520,4595,4667,4740,4810,4881,4941,5002,5071,5140,5210,5284,5360,5424,5501,5577,5654,5719,5788,5865,5940,6009,6077,6154,6220,6281,6378,6443,6512,6611,6682,6741,6799,6856,6915,6979,7050,7122,7194,7266,7338,7405,7473,7541,7600,7663,7727,7817,7908,7968,8034,8101,8167,8237,8301,8354,8467,8525,8588,8653,8718,8793,8866,8938,8987,9048,9109,9170,9232,9296,9360,9424,9489,9552,9612,9673,9739,9798,9858,9920,9991,10051,10607,10693,10780,10870,10957,11045,11127,11210,11300,12369,12421,12479,12524,12590,12654,12711,12768,13264,13321,13369,13418,13469,13573,13620,13712,14030,14164,14228,14290,14350,14610,14684,14754,14832,14886,14956,15041,15089,15135,15206,15284,15362,15434,15508,15582,15656,15736,15809,15878,15950,16027,16088,16151,16217,16281,16352,16415,16480,16544,16605,16666,16718,16791,16865,16934,17009,17083,17157,17298,21918,22908,22986,23076,23164,23260,23846,24428,24517,24764,25045,25297,25582,25975,26452,26674,26896,27172,27399,27629,27859,28089,28319,28546,28965,29191,29616,29846,30274,30493,30776,30984,31115,31342,31768,31993,32420,32641,33066,33186,33462,33763,34087,34378,34692,34829,34960,35065,35307,35474,35678,35886,36157,36269,36381,36486,36603,36817,36963,37103,37189,37537,37625,37871,38289,38538,38620,38718,39335,39435,39687,40111,40366,40460,40549,40786,42838,43080,43182,43435,45619,56340,57856,68676,70204,71961,72587,73007,74068,75333,75589,75825,76372,76866,77471,77669,78249,78813,79188,79306,79844,80001,80197,80470,80726,80896,81037,81101,81383,81669,82345,82609,82947,83300,83394,83580,83886,84148,84273,84400,84639,84850,84969,85162,85339,85794,85975,86097,86356,86469,86656,86758,86865,86994,87269,87777,88273,89150,89444,90014,90163,90895,91067,91403,91495,92575,96919,101406,101468,102098,102712,102803,102916,103145,103305,103457,103628,103794,103963,104130,104293,104536,104706,104879,105050,105324,105523,105728,106448,106532,106628,106724,106822,106922,107024,107126,107228,107330,107432,107532,107628,107740,107869,107992,108123,108254,108352,108466,108560,108700,108834,108930,109042,109142,109258,109354,109466,109566,109706,109842,110006,110136,110294,110444,110585,110729,110864,110976,111126,111254,111382,111518,111650,111780,111910,112022,112920,113066,113210,113374,113440,113530,113606,113710,113800,113902,114010,114118,114218,114298,114390,114488,114598,114676,114782,114874,114978,115088,115210,115373,117803,117883,117983,118073,118183,118277,118383,118475,118575,118687,118801,118917,119033,119127,119241,119353,119455,119575,119697,119779,119883,120003,120129,120227,120321,120409,120521,120637,120759,120871,121046,121162,121248,121340,121452,121576,121643,121769,121837,121965,122109,122237,122306,122401,122516,122629,122728,122837,122948,123059,123160,123265,123365,123495,123586,123709,123803,123915,124001,124105,124201,124289,124407,124511,124615,124741,124829,124937,125037,125127,125237,125321,125423,125507,125561,125625,125731,125841,125925,126770,131914,132032,132147,132279,132994,133686,134203,135850,136235,136832,138431,139964,140352,142659,162177,162735,169946,184102,186115,186377,186733,187563,194345,195479,195773,195996,196323,202069,202717,204350,204620,208471,209072,212881,214096,215505", -+ "endLines": "3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,157,158,159,160,161,162,163,164,180,181,182,183,184,185,186,187,196,197,198,199,200,203,204,206,213,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,306,319,320,321,322,323,339,340,344,348,352,357,363,370,374,378,383,387,391,395,399,403,407,413,417,423,427,433,437,442,446,449,453,459,463,469,473,479,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,821,847,1016,1042,1073,1081,1087,1101,1123,1128,1133,1143,1152,1161,1165,1172,1180,1187,1188,1197,1200,1203,1207,1211,1215,1218,1219,1223,1227,1237,1242,1249,1255,1256,1259,1263,1268,1270,1272,1275,1278,1280,1284,1287,1294,1297,1300,1304,1306,1310,1312,1314,1316,1320,1328,1336,1348,1354,1363,1366,1377,1380,1385,1386,1391,1463,1522,1523,1533,1542,1543,1545,1549,1552,1555,1558,1561,1564,1567,1570,1574,1577,1580,1583,1587,1590,1594,1598,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1626,1628,1629,1630,1631,1632,1633,1634,1635,1637,1638,1640,1641,1643,1645,1646,1648,1649,1650,1651,1652,1653,1655,1656,1657,1658,1659,1660,1673,1675,1677,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1692,1693,1694,1695,1696,1697,1699,1703,1707,1747,1748,1749,1750,1751,1752,1753,1755,1757,1759,1761,1763,1764,1765,1766,1768,1770,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1786,1787,1788,1789,1791,1793,1794,1796,1797,1799,1801,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1819,1821,1822,1823,1824,1825,1827,1829,1831,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1945,1948,1951,1954,1968,1979,1989,2016,2023,2034,2064,2091,2100,2137,2518,2523,2556,2673,2967,2973,2979,3002,3143,3163,3169,3173,3179,3216,3319,3346,3351,3417,3432,3497,3516,3542,3551", -+ "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", -+ "endOffsets": "261,306,355,396,451,510,572,653,714,789,865,942,1020,1105,1187,1263,1339,1416,1494,1600,1706,1785,1865,1922,1980,2180,2255,2320,2386,2446,2507,2579,2652,2719,2787,2846,2905,2964,3023,3082,3136,3190,3243,3297,3351,3405,3459,3665,3744,3817,3891,3962,4034,4106,4179,4236,4294,4367,4441,4515,4590,4662,4735,4805,4876,4936,4997,5066,5135,5205,5279,5355,5419,5496,5572,5649,5714,5783,5860,5935,6004,6072,6149,6215,6276,6373,6438,6507,6606,6677,6736,6794,6851,6910,6974,7045,7117,7189,7261,7333,7400,7468,7536,7595,7658,7722,7812,7903,7963,8029,8096,8162,8232,8296,8349,8462,8520,8583,8648,8713,8788,8861,8933,8982,9043,9104,9165,9227,9291,9355,9419,9484,9547,9607,9668,9734,9793,9853,9915,9986,10046,10114,10688,10775,10865,10952,11040,11122,11205,11295,11386,12416,12474,12519,12585,12649,12706,12763,12817,13316,13364,13413,13464,13498,13615,13664,13753,14057,14223,14285,14345,14402,14679,14749,14827,14881,14951,15036,15084,15130,15201,15279,15357,15429,15503,15577,15651,15731,15804,15873,15945,16022,16083,16146,16212,16276,16347,16410,16475,16539,16600,16661,16713,16786,16860,16929,17004,17078,17152,17293,17363,21966,22981,23071,23159,23255,23345,24423,24512,24759,25040,25292,25577,25970,26447,26669,26891,27167,27394,27624,27854,28084,28314,28541,28960,29186,29611,29841,30269,30488,30771,30979,31110,31337,31763,31988,32415,32636,33061,33181,33457,33758,34082,34373,34687,34824,34955,35060,35302,35469,35673,35881,36152,36264,36376,36481,36598,36812,36958,37098,37184,37532,37620,37866,38284,38533,38615,38713,39330,39430,39682,40106,40361,40455,40544,40781,42833,43075,43177,43430,45614,56335,57851,68671,70199,71956,72582,73002,74063,75328,75584,75820,76367,76861,77466,77664,78244,78808,79183,79301,79839,79996,80192,80465,80721,80891,81032,81096,81378,81664,82340,82604,82942,83295,83389,83575,83881,84143,84268,84395,84634,84845,84964,85157,85334,85789,85970,86092,86351,86464,86651,86753,86860,86989,87264,87772,88268,89145,89439,90009,90158,90890,91062,91398,91490,91768,96914,101401,101463,102093,102707,102798,102911,103140,103300,103452,103623,103789,103958,104125,104288,104531,104701,104874,105045,105319,105518,105723,106053,106527,106623,106719,106817,106917,107019,107121,107223,107325,107427,107527,107623,107735,107864,107987,108118,108249,108347,108461,108555,108695,108829,108925,109037,109137,109253,109349,109461,109561,109701,109837,110001,110131,110289,110439,110580,110724,110859,110971,111121,111249,111377,111513,111645,111775,111905,112017,112157,113061,113205,113343,113435,113525,113601,113705,113795,113897,114005,114113,114213,114293,114385,114483,114593,114671,114777,114869,114973,115083,115205,115368,115525,117878,117978,118068,118178,118272,118378,118470,118570,118682,118796,118912,119028,119122,119236,119348,119450,119570,119692,119774,119878,119998,120124,120222,120316,120404,120516,120632,120754,120866,121041,121157,121243,121335,121447,121571,121638,121764,121832,121960,122104,122232,122301,122396,122511,122624,122723,122832,122943,123054,123155,123260,123360,123490,123581,123704,123798,123910,123996,124100,124196,124284,124402,124506,124610,124736,124824,124932,125032,125122,125232,125316,125418,125502,125556,125620,125726,125836,125920,126040,131909,132027,132142,132274,132989,133681,134198,135845,136230,136827,138426,139959,140347,142654,162172,162432,164122,170974,186110,186372,186728,187558,194340,195474,195768,195991,196318,198368,202712,204345,204615,208466,209067,212876,214091,215500,215974" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/values/values.xml", -+ "from": { -+ "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", -+ "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" -+ }, -+ "to": { -+ "startLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1662,1666,1667,1671,1848,1849,2524,2674,2717,2888,2925", -+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", -+ "startOffsets": "3464,3533,10119,10189,10257,10329,10399,10460,10534,11391,11452,11513,11575,11639,11701,11762,11830,11930,11990,12056,12129,12198,12255,12307,12822,12894,13503,13538,13758,13808,13869,13926,13960,13995,14540,22531,112162,112279,112480,112590,112791,126045,126117,162437,170979,173885,181965,183725", -+ "endLines": "52,53,149,150,151,152,153,154,155,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,188,189,201,202,207,208,209,210,211,212,222,314,1661,1665,1666,1670,1671,1848,1849,2530,2716,2748,2924,2931", -+ "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", -+ "endOffsets": "3528,3591,10184,10252,10324,10394,10455,10529,10602,11447,11508,11570,11634,11696,11757,11825,11925,11985,12051,12124,12193,12250,12302,12364,12889,12965,13533,13568,13803,13864,13921,13955,13990,14025,14605,22597,112274,112475,112585,112786,112915,126112,126179,162730,173880,175945,183720,184097" -+ } -+ }, -+ { -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/70a4d59d737c9f8fe9a6cc82e0450ccb/coordinatorlayout-1.0.0/res/values/values.xml", -+ "from": { -+ "startLines": "2,102,3,13", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "55,5935,116,724", -+ "endLines": "2,104,12,101", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "111,6075,719,5930" -+ }, -+ "to": { -+ "startLines": "2,1850,2557,2567", -+ "startColumns": "4,4,4,4", -+ "startOffsets": "150,126184,164127,164735", -+ "endLines": "2,1852,2566,2655", -+ "endColumns": "60,12,24,24", -+ "endOffsets": "206,126324,164730,169941" -+ } -+ } -+ ] -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/anim.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/anim.json -new file mode 100644 -index 0000000..81e4f7d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/anim.json -@@ -0,0 +1,74 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_shrink_fade_out_from_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_up.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_enter.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_push_up_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_exit.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_top.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_popup_exit.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_down.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_slide_down.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_in_bottom.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_tooltip_enter.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_fade_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_in.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/anim/catalyst_fade_out.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_slide_out_top.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/anim/abc_grow_fade_in_from_bottom.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v21.json -new file mode 100644 -index 0000000..c16a015 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v21.json -@@ -0,0 +1,6 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v21/abc_btn_colored_borderless_text_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v23.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v23.json -new file mode 100644 -index 0000000..1ac6b5b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color-v23.json -@@ -0,0 +1,38 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_seek_thumb.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_switch_track.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_edittext.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_btn_colored_borderless_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_spinner.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_default.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_tint_btn_checkable.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color-v23/abc_color_highlight_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color.json -new file mode 100644 -index 0000000..6d8a1e8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/color.json -@@ -0,0 +1,82 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_btn_checkable.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_switch_track.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_background_cache_hint_selector_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_primary_text_disable_only_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_search_url_text.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_seek_thumb.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_edittext.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_default.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_default.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_btn_colored_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_secondary_text_material_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_hint_foreground_material_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/abc_tint_spinner.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/color/switch_thumb_material_light.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-hdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-hdpi-v4.json -new file mode 100644 -index 0000000..6e3b4cb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-hdpi-v4.json -@@ -0,0 +1,210 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-hdpi-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-hdpi-v17.json -new file mode 100644 -index 0000000..be4ca21 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-hdpi-v17.json -@@ -0,0 +1,14 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-mdpi-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-mdpi-v17.json -new file mode 100644 -index 0000000..22fd5f0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-mdpi-v17.json -@@ -0,0 +1,14 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xhdpi-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xhdpi-v17.json -new file mode 100644 -index 0000000..8a235cb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xhdpi-v17.json -@@ -0,0 +1,14 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxhdpi-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxhdpi-v17.json -new file mode 100644 -index 0000000..3ecf0dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxhdpi-v17.json -@@ -0,0 +1,14 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxxhdpi-v17.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxxhdpi-v17.json -new file mode 100644 -index 0000000..227ccee ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-ldrtl-xxxhdpi-v17.json -@@ -0,0 +1,14 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-mdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-mdpi-v4.json -new file mode 100644 -index 0000000..4c49acd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-mdpi-v4.json -@@ -0,0 +1,210 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-mdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v21.json -new file mode 100644 -index 0000000..a95b2b8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v21.json -@@ -0,0 +1,26 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_action_bar_item_background_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_edit_text_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_list_divider_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-v21/notification_action_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_dialog_material_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v21/abc_btn_colored_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v23.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v23.json -new file mode 100644 -index 0000000..102e282 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-v23.json -@@ -0,0 +1,6 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-v23/abc_control_background_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-watch-v20.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-watch-v20.json -new file mode 100644 -index 0000000..5b97d76 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-watch-v20.json -@@ -0,0 +1,6 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-watch-v20/abc_dialog_material_background.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xhdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xhdpi-v4.json -new file mode 100644 -index 0000000..af4acb7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xhdpi-v4.json -@@ -0,0 +1,210 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable-xhdpi-v4/notification_bg_normal.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxhdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxhdpi-v4.json -new file mode 100644 -index 0000000..0c2810c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxhdpi-v4.json -@@ -0,0 +1,190 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxxhdpi-v4.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxxhdpi-v4.json -new file mode 100644 -index 0000000..41fd771 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable-xxxhdpi-v4.json -@@ -0,0 +1,106 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable.json -new file mode 100644 -index 0000000..beb3a06 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/drawable.json -@@ -0,0 +1,154 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_spinner_textfield_background_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_vector_test.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/redbox_top_border_background.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/drawable/redbox_top_border_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_default_mtrl_shape.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_clear_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_go_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_menu_overflow_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_voice_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_icon_background.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_track_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_ab_back_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_radio_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_textfield_search_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_borderless_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_indicator_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_switch_thumb_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_tab_indicator_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_tick_mark_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_item_background_holo_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_internal_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_tile_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_cab_background_top_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ic_search_api_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_ratingbar_small_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_list_selector_background_transition_holo_light.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/tooltip_frame_dark.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/drawable/notification_bg_low.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_seekbar_thumb_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_btn_check_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/drawable/abc_text_cursor_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v21.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v21.json -new file mode 100644 -index 0000000..8c9e5f6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v21.json -@@ -0,0 +1,18 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action_tombstone.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_custom_big.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_template_icon_group.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout-v21/notification_action.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v26.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v26.json -new file mode 100644 -index 0000000..a469c7d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-v26.json -@@ -0,0 +1,6 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-v26/abc_screen_toolbar.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-watch-v20.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-watch-v20.json -new file mode 100644 -index 0000000..b75b941 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout-watch-v20.json -@@ -0,0 +1,10 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_title_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout.json -new file mode 100644 -index 0000000..f1ab1ed ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/layout.json -@@ -0,0 +1,158 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/fps_view.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/fps_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_select_dialog_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_select_dialog_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_menu_item_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_dialog_title_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_content_include.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_content_include.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/notification_template_part_chronometer.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_chronometer.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_simple_overlay_action_mode.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple_overlay_action_mode.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_title_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_title_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_cascading_menu_item_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_cascading_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view_list_item.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view_list_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_mode_close_item_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_close_item_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_popup_menu_item_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_checkbox.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_checkbox.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_multichoice_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_multichoice_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/dev_loading_view.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/dev_loading_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/notification_template_part_time.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/6103c9b3bf8bcc0b8e6aac0a16505a0f/core-1.0.1/res/layout/notification_template_part_time.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_toolbar.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_title.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_item_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_item_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_popup_menu_header_item_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_popup_menu_header_item_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_mode_bar.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_mode_bar.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_bar_title_item.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_title_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_activity_chooser_view.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_activity_chooser_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_tooltip.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_tooltip.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/support_simple_spinner_dropdown_item.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/support_simple_spinner_dropdown_item.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_icon.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_icon.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_menu_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_menu_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_search_view.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_view.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_action_bar_up_container.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_action_bar_up_container.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_search_dropdown_item_icons_2line.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_search_dropdown_item_icons_2line.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_button_bar_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_button_bar_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_list_menu_item_radio.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_list_menu_item_radio.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_alert_dialog_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_alert_dialog_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_expanded_menu_layout.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_expanded_menu_layout.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/abc_screen_simple.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_item_frame.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/select_dialog_singlechoice_material.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/b99d24b829acedfdee52fa66c4f8e682/appcompat-1.0.2/res/layout/select_dialog_singlechoice_material.xml" -+ }, -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout/redbox_view.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/layout/redbox_view.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/xml.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/xml.json -new file mode 100644 -index 0000000..4e06d0b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/merged_res_blame_folder/release/out/single/xml.json -@@ -0,0 +1,6 @@ -+[ -+ { -+ "merged": "/Users/lucascorreia/Documents/workspace/getstream/stream-chat-react-native/examples/NativeMessaging/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/xml/rn_dev_preferences.xml", -+ "source": "/Users/lucascorreia/.gradle/caches/transforms-2/files-2.1/ebddc89d66fbc3d97e8e6efae925f8d5/jetified-react-native-0.64.1/res/xml/rn_dev_preferences.xml" -+ } -+] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/navigation_json/release/navigation.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/navigation_json/release/navigation.json -new file mode 100644 -index 0000000..0637a08 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/navigation_json/release/navigation.json -@@ -0,0 +1 @@ -+[] -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml -new file mode 100644 -index 0000000..18d5671 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json -new file mode 100644 -index 0000000..55c18df ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json -@@ -0,0 +1,16 @@ -+{ -+ "version": 2, -+ "artifactType": { -+ "type": "PACKAGED_MANIFESTS", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.mvcpscrollviewmanager.test", -+ "variantName": "debugAndroidTest", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "outputFile": "AndroidManifest.xml" -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/release/output-metadata.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/release/output-metadata.json -new file mode 100644 -index 0000000..e0111a1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/packaged_manifests/release/output-metadata.json -@@ -0,0 +1,16 @@ -+{ -+ "version": 2, -+ "artifactType": { -+ "type": "PACKAGED_MANIFESTS", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.mvcpscrollviewmanager", -+ "variantName": "release", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "outputFile": "../../library_manifest/release/AndroidManifest.xml" -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json -new file mode 100644 -index 0000000..ebeb2c0 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json -@@ -0,0 +1,18 @@ -+{ -+ "version": 2, -+ "artifactType": { -+ "type": "PROCESSED_RES", -+ "kind": "Directory" -+ }, -+ "applicationId": "com.mvcpscrollviewmanager.test", -+ "variantName": "processDebugAndroidTestResources", -+ "elements": [ -+ { -+ "type": "SINGLE", -+ "filters": [], -+ "versionCode": 0, -+ "versionName": "", -+ "outputFile": "resources-debugAndroidTest.ap_" -+ } -+ ] -+} -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ -new file mode 100644 -index 0000000..deaad23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_0.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_0.jar -new file mode 100644 -index 0000000..2bb91f5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_0.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_1.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_1.jar -new file mode 100644 -index 0000000..16253c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_1.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_2.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_2.jar -new file mode 100644 -index 0000000..290217f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_2.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_3.jar b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_3.jar -new file mode 100644 -index 0000000..a51312e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/07b985237b33871af46fb9eaf739648429b682825884ca8c6725b102049af374_3.jar differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/com/mvcpscrollviewmanager/test/BuildConfig.dex b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/com/mvcpscrollviewmanager/test/BuildConfig.dex -new file mode 100644 -index 0000000..937abf0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/project_dex_archive/debugAndroidTest/out/com/mvcpscrollviewmanager/test/BuildConfig.dex differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat -new file mode 100644 -index 0000000..5e5be6a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat -new file mode 100644 -index 0000000..06c2920 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_fade_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat -new file mode 100644 -index 0000000..3f88cb6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_grow_fade_in_from_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat -new file mode 100644 -index 0000000..75c0998 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_enter.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat -new file mode 100644 -index 0000000..83571f3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_popup_exit.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat -new file mode 100644 -index 0000000..c8e6977 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_shrink_fade_out_from_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat -new file mode 100644 -index 0000000..127516b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat -new file mode 100644 -index 0000000..41187c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_in_top.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat -new file mode 100644 -index 0000000..b89de01 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat -new file mode 100644 -index 0000000..821614f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_slide_out_top.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat -new file mode 100644 -index 0000000..33daa97 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_enter.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat -new file mode 100644 -index 0000000..3a4023d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_abc_tooltip_exit.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_in.xml.flat -new file mode 100644 -index 0000000..114106a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_out.xml.flat -new file mode 100644 -index 0000000..37c9fe1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_fade_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat -new file mode 100644 -index 0000000..a2964d1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat -new file mode 100644 -index 0000000..f7392f6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_push_up_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_down.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_down.xml.flat -new file mode 100644 -index 0000000..d013755 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_down.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_up.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_up.xml.flat -new file mode 100644 -index 0000000..9a861ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/anim_catalyst_slide_up.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat -new file mode 100644 -index 0000000..ca208e5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat -new file mode 100644 -index 0000000..15b8cfc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat -new file mode 100644 -index 0000000..a53b15e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_btn_colored_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat -new file mode 100644 -index 0000000..9eca6a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_color_highlight_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat -new file mode 100644 -index 0000000..49a4f4b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_btn_checkable.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat -new file mode 100644 -index 0000000..4869ecb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_default.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat -new file mode 100644 -index 0000000..6b3a008 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_edittext.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat -new file mode 100644 -index 0000000..0a991db -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_seek_thumb.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat -new file mode 100644 -index 0000000..0807433 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_spinner.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat -new file mode 100644 -index 0000000..2408ee7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color-v23_abc_tint_switch_track.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat -new file mode 100644 -index 0000000..221b7c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat -new file mode 100644 -index 0000000..2e6942d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_background_cache_hint_selector_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat -new file mode 100644 -index 0000000..35a44ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_btn_colored_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat -new file mode 100644 -index 0000000..f3cb05b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat -new file mode 100644 -index 0000000..a50f38b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_hint_foreground_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat -new file mode 100644 -index 0000000..158f025 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat -new file mode 100644 -index 0000000..31c8d2f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_disable_only_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat -new file mode 100644 -index 0000000..593e6f2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat -new file mode 100644 -index 0000000..f623bdb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_primary_text_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat -new file mode 100644 -index 0000000..4dbb4fb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_search_url_text.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat -new file mode 100644 -index 0000000..f6c88df -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat -new file mode 100644 -index 0000000..b3f2a90 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_secondary_text_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat -new file mode 100644 -index 0000000..e335fe5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_btn_checkable.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat -new file mode 100644 -index 0000000..6250de3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_default.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat -new file mode 100644 -index 0000000..54ef09b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_edittext.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat -new file mode 100644 -index 0000000..9f73df0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_seek_thumb.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat -new file mode 100644 -index 0000000..3451101 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_spinner.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat -new file mode 100644 -index 0000000..a38caa5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_abc_tint_switch_track.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat -new file mode 100644 -index 0000000..f97a2f8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat -new file mode 100644 -index 0000000..0685dfd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/color_switch_thumb_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..e13489c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..87ed0e8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..44845f1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..ef90b0f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..048cbc8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..435ebe1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..31df276 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..971185f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..713e950 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..b781527 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..b427ad1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..7f3e6b4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..80cb2b3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..73d5523 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..cb9df45 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..f6c61ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..cd1f488 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..2eeebeb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..22f3839 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..47e52ad -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..5508f94 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..4dda5cc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..9cc558f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..f01c51c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..9637f44 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..200bf2d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..561dd91 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..93fa2a8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..4a75119 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..65a5993 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..2a78399 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..ad49e42 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..28e583e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..294700a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..d45f167 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..626262b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..f925aee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..48e755d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..db067ab -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..8d1e6da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..af5373a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..cf8da04 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..3544beb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..28208db -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..7791515 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..d88a0a2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..674115b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..b718efd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..a4c44c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..5b76827 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..660e9cf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..7ea3cb7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..d7d4fe2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..e285fa8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..096731a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..840e320 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..8266fff -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..5250773 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..d96cbd7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..124fb11 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..6f9102f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..03995ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..93b6140 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..975324b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..02bc632 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..33b5de9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..54d18e2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..54712df -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..213d5e9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..8430a6b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..d25307f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..34feb7b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..410038f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..a43bffc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..a21e02c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..b1fcd93 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..bf99f05 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..8e4955c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..61c9261 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..26a5737 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..636e97f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..bc58dee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..d0b2c19 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..c6a940d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..1df9c96 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..d50f163 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..bcba79b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..c7d1325 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..184eb15 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..f61b1cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..4f8310a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..e8fa583 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..350f981 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..3b49808 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..4427356 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..a2ea86c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..d476d21 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..52d9a20 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..a37880f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..726e711 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..c675abf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..cd8c779 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..7c47b7e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..5ab1286 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..69750e0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..ab4bf26 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..0487550 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..37ac8ef -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..d458a2c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..9c1934c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..fc8df49 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..faf837d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..56cafc3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..a6a402d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..f33105a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..f438b83 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..550cc0f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..72a4009 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..c0a8c38 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat -new file mode 100644 -index 0000000..7fada3c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_action_bar_item_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat -new file mode 100644 -index 0000000..e175be5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_btn_colored_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat -new file mode 100644 -index 0000000..f3ed2b3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_dialog_material_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat -new file mode 100644 -index 0000000..9b036fb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_edit_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat -new file mode 100644 -index 0000000..408c274 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_abc_list_divider_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat -new file mode 100644 -index 0000000..d849576 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v21_notification_action_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat -new file mode 100644 -index 0000000..9daadbe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-v23_abc_control_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat -new file mode 100644 -index 0000000..4ea9dea -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-watch-v20_abc_dialog_material_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..de61aa3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..cd80d95 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..6a1b040 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..15a609d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..c15c74b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..49dde05 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..581dccb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..537c1a9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..62227d8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..98f4b14 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..440be97 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..3a887ac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..277db29 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..6b3934e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..c5e0e86 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..f613c0f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..2ba37bf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..2f856e9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..8f90d8b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..9dd6bcd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..3beedcc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..4863688 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..2cc02bd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..60e3696 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..a852ebd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..9828f9d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..d0bfa37 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..cc515e5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..9b8fc59 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..24d221b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..a0fcb16 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..6843f3e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..f5b9820 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..2e5c3bd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..2b479b9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..5c63cb9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..d038332 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..1a9dab1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..5434ae9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..828c214 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..45540c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..049a986 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..a3383a2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..97f1e6c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..e10aab3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..73f1b56 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..42e19c9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..94ff871 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..70863cb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..f2295f6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..e7e175d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..0008bbb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..75f36cf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..a56e8a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..c7b0806 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..08ae3a0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..96ed6a6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..6e45da4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..fcf7e9f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..9629541 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..f67b213 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..ffc3e8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..86f5052 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..58ec340 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..afb044a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..84baffa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..a557845 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..57dacdb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..7737251 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..fdc632d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..d09ac9d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..2cde345 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..3a8cd62 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..cfd2c34 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..ca70def -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..e819046 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..1112b90 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..dfaf808 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..c65d802 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..19e0444 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..1e1a529 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..6f99a02 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..093ef19 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..0be648e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..d476512 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..3f933e1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..7c257bc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..4a2bdac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..302db03 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..621609d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..309cc19 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..9e5b930 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..fc48edc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..e00feb4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..ef61690 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..14f09da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..8a40a36 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..d661f25 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..2f0c04c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..ed81128 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..3bd0bfa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..3ad6f49 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..146179b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..6126767 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..1db9bdc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..2498cb6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..b31524c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..06ecdf9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..9328747 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..e58ad90 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..267d2e9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..8c42f50 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..da04612 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..2882652 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..06f8f96 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..62d04d9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..21ce32c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..52cc6ee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..23a4c82 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..04c276e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..66eec92 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..e6ca34e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..d08d6d3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..151387a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..a4cb6c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat -new file mode 100644 -index 0000000..125e9c2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_borderless_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat -new file mode 100644 -index 0000000..d39452f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_check_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat -new file mode 100644 -index 0000000..fc7e6f4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_default_mtrl_shape.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat -new file mode 100644 -index 0000000..daaa607 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_btn_radio_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat -new file mode 100644 -index 0000000..c53a707 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_internal_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat -new file mode 100644 -index 0000000..f221805 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_cab_background_top_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat -new file mode 100644 -index 0000000..5815ff1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_ab_back_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat -new file mode 100644 -index 0000000..37785b0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat -new file mode 100644 -index 0000000..29f0346 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_clear_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat -new file mode 100644 -index 0000000..3b799d2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_go_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat -new file mode 100644 -index 0000000..ff511a2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_menu_overflow_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat -new file mode 100644 -index 0000000..bb111e8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat -new file mode 100644 -index 0000000..50ff54b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ic_voice_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat -new file mode 100644 -index 0000000..75e88a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat -new file mode 100644 -index 0000000..b83ebe0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_item_background_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat -new file mode 100644 -index 0000000..4a0c354 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat -new file mode 100644 -index 0000000..32ff65f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat -new file mode 100644 -index 0000000..1464c84 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat -new file mode 100644 -index 0000000..845ca03 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_list_selector_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat -new file mode 100644 -index 0000000..ed62cb3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_indicator_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat -new file mode 100644 -index 0000000..276cdd1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat -new file mode 100644 -index 0000000..bf0d06c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_ratingbar_small_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat -new file mode 100644 -index 0000000..3bc84eb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_thumb_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat -new file mode 100644 -index 0000000..e1c4bb3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_tick_mark_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat -new file mode 100644 -index 0000000..971963b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_seekbar_track_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat -new file mode 100644 -index 0000000..557dca4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_spinner_textfield_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat -new file mode 100644 -index 0000000..87de070 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_switch_thumb_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat -new file mode 100644 -index 0000000..443920e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_tab_indicator_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat -new file mode 100644 -index 0000000..d658bce -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_text_cursor_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat -new file mode 100644 -index 0000000..9dfc8ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_textfield_search_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat -new file mode 100644 -index 0000000..10e2753 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_abc_vector_test.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat -new file mode 100644 -index 0000000..e0ecc3a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat -new file mode 100644 -index 0000000..0abfb43 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_bg_low.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat -new file mode 100644 -index 0000000..0085f27 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_icon_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat -new file mode 100644 -index 0000000..e4160a6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_notification_tile_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_redbox_top_border_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_redbox_top_border_background.xml.flat -new file mode 100644 -index 0000000..e6ed577 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_redbox_top_border_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat -new file mode 100644 -index 0000000..8e11048 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat -new file mode 100644 -index 0000000..88a6c5d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/drawable_tooltip_frame_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat -new file mode 100644 -index 0000000..0d9eb0c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat -new file mode 100644 -index 0000000..b45ba7a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_action_tombstone.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat -new file mode 100644 -index 0000000..cce8893 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_custom_big.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat -new file mode 100644 -index 0000000..886e232 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v21_notification_template_icon_group.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat -new file mode 100644 -index 0000000..ad3ab89 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-v26_abc_screen_toolbar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat -new file mode 100644 -index 0000000..623b3e9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..c88c960 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat -new file mode 100644 -index 0000000..209d15a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_title_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat -new file mode 100644 -index 0000000..1f99fbe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_bar_up_container.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..14b970b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat -new file mode 100644 -index 0000000..cd8e84d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_menu_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat -new file mode 100644 -index 0000000..cf703a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_bar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat -new file mode 100644 -index 0000000..499fcf0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_action_mode_close_item_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat -new file mode 100644 -index 0000000..bea4910 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat -new file mode 100644 -index 0000000..2aea9b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_activity_chooser_view_list_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat -new file mode 100644 -index 0000000..a232d23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_button_bar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat -new file mode 100644 -index 0000000..6fcfac0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..de6c699 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_alert_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..64bb00f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_cascading_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..9dff2e3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat -new file mode 100644 -index 0000000..790d90e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_expanded_menu_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat -new file mode 100644 -index 0000000..8e150f8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_checkbox.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat -new file mode 100644 -index 0000000..5187b24 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_icon.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..a24462c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat -new file mode 100644 -index 0000000..79de473 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_list_menu_item_radio.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat -new file mode 100644 -index 0000000..99c63fd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_header_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..d26c9a8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_popup_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat -new file mode 100644 -index 0000000..df7e799 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_content_include.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat -new file mode 100644 -index 0000000..3a106f0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat -new file mode 100644 -index 0000000..a83d0cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_simple_overlay_action_mode.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat -new file mode 100644 -index 0000000..c013b45 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_screen_toolbar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat -new file mode 100644 -index 0000000..b671247 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_dropdown_item_icons_2line.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat -new file mode 100644 -index 0000000..d4278b8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_search_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat -new file mode 100644 -index 0000000..a210905 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_select_dialog_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat -new file mode 100644 -index 0000000..43815a5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_abc_tooltip.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_dev_loading_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_dev_loading_view.xml.flat -new file mode 100644 -index 0000000..dd2ed55 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_dev_loading_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat -new file mode 100644 -index 0000000..f66fed9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_fps_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat -new file mode 100644 -index 0000000..1c84878 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_chronometer.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat -new file mode 100644 -index 0000000..1337d7e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_notification_template_part_time.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat -new file mode 100644 -index 0000000..c6b0447 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_frame.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat -new file mode 100644 -index 0000000..f50436b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_item_title.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat -new file mode 100644 -index 0000000..f11e448 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_redbox_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat -new file mode 100644 -index 0000000..b2e0ea3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_item_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat -new file mode 100644 -index 0000000..cc81618 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_multichoice_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat -new file mode 100644 -index 0000000..e110396 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_select_dialog_singlechoice_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat -new file mode 100644 -index 0000000..5549e4d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/layout_support_simple_spinner_dropdown_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat -new file mode 100644 -index 0000000..d77806c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-af_values-af.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat -new file mode 100644 -index 0000000..7339235 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-am_values-am.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat -new file mode 100644 -index 0000000..8465e9d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ar_values-ar.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat -new file mode 100644 -index 0000000..50676eb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-as_values-as.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat -new file mode 100644 -index 0000000..a50640a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-az_values-az.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -new file mode 100644 -index 0000000..c90c56b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat -new file mode 100644 -index 0000000..7e059fe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-be_values-be.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat -new file mode 100644 -index 0000000..0d694f1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bg_values-bg.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat -new file mode 100644 -index 0000000..086a8c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bn_values-bn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat -new file mode 100644 -index 0000000..f34aa76 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-bs_values-bs.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat -new file mode 100644 -index 0000000..95f802d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ca_values-ca.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat -new file mode 100644 -index 0000000..0679d6e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-cs_values-cs.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat -new file mode 100644 -index 0000000..18a74d5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-da_values-da.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat -new file mode 100644 -index 0000000..bea21a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-de_values-de.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat -new file mode 100644 -index 0000000..7a2fd0e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-el_values-el.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat -new file mode 100644 -index 0000000..52cc0b1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rAU_values-en-rAU.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat -new file mode 100644 -index 0000000..68514f2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rCA_values-en-rCA.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat -new file mode 100644 -index 0000000..dae5c8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rGB_values-en-rGB.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat -new file mode 100644 -index 0000000..2bdb089 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rIN_values-en-rIN.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat -new file mode 100644 -index 0000000..3edb666 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-en-rXC_values-en-rXC.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat -new file mode 100644 -index 0000000..19bcc50 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es-rUS_values-es-rUS.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat -new file mode 100644 -index 0000000..717b9bc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-es_values-es.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat -new file mode 100644 -index 0000000..8c7cbd5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-et_values-et.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat -new file mode 100644 -index 0000000..073e124 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-eu_values-eu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat -new file mode 100644 -index 0000000..77efe57 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fa_values-fa.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat -new file mode 100644 -index 0000000..08b5599 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fi_values-fi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat -new file mode 100644 -index 0000000..35f611c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr-rCA_values-fr-rCA.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat -new file mode 100644 -index 0000000..0d1e013 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-fr_values-fr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat -new file mode 100644 -index 0000000..f453be6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gl_values-gl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat -new file mode 100644 -index 0000000..7e647c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-gu_values-gu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat -new file mode 100644 -index 0000000..449e86f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-h720dp-v13_values-h720dp-v13.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat -new file mode 100644 -index 0000000..7e945e5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hdpi-v4_values-hdpi-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat -new file mode 100644 -index 0000000..6c7b5c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hi_values-hi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat -new file mode 100644 -index 0000000..77b2f23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hr_values-hr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat -new file mode 100644 -index 0000000..600dbf0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hu_values-hu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat -new file mode 100644 -index 0000000..e38aa71 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-hy_values-hy.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat -new file mode 100644 -index 0000000..0fdefac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-in_values-in.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat -new file mode 100644 -index 0000000..00edb16 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-is_values-is.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat -new file mode 100644 -index 0000000..83b1e8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-it_values-it.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat -new file mode 100644 -index 0000000..fd32419 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-iw_values-iw.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat -new file mode 100644 -index 0000000..a762fdd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ja_values-ja.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat -new file mode 100644 -index 0000000..d4f53d5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ka_values-ka.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat -new file mode 100644 -index 0000000..0da4a39 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kk_values-kk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat -new file mode 100644 -index 0000000..00a2a4c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-km_values-km.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat -new file mode 100644 -index 0000000..177b91c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-kn_values-kn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat -new file mode 100644 -index 0000000..6f24309 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ko_values-ko.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat -new file mode 100644 -index 0000000..87b5970 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ky_values-ky.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat -new file mode 100644 -index 0000000..acffebc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-land_values-land.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat -new file mode 100644 -index 0000000..2d7647a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-large-v4_values-large-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat -new file mode 100644 -index 0000000..c257e50 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ldltr-v21_values-ldltr-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat -new file mode 100644 -index 0000000..e267d6d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lo_values-lo.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat -new file mode 100644 -index 0000000..a8d8bc9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lt_values-lt.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat -new file mode 100644 -index 0000000..aaa80a4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-lv_values-lv.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat -new file mode 100644 -index 0000000..16f26e6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mk_values-mk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat -new file mode 100644 -index 0000000..4368607 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ml_values-ml.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat -new file mode 100644 -index 0000000..44d2b24 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mn_values-mn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat -new file mode 100644 -index 0000000..c70eaee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-mr_values-mr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat -new file mode 100644 -index 0000000..c001652 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ms_values-ms.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat -new file mode 100644 -index 0000000..60850ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-my_values-my.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat -new file mode 100644 -index 0000000..c697c1c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nb_values-nb.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat -new file mode 100644 -index 0000000..ae42f69 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ne_values-ne.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat -new file mode 100644 -index 0000000..19c3d0f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-night-v8_values-night-v8.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat -new file mode 100644 -index 0000000..180ea11 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-nl_values-nl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat -new file mode 100644 -index 0000000..fd48552 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-or_values-or.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat -new file mode 100644 -index 0000000..8f3d99b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pa_values-pa.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat -new file mode 100644 -index 0000000..166bda9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pl_values-pl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat -new file mode 100644 -index 0000000..d3035f8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-port_values-port.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat -new file mode 100644 -index 0000000..32add27 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rBR_values-pt-rBR.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat -new file mode 100644 -index 0000000..7dedb68 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt-rPT_values-pt-rPT.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat -new file mode 100644 -index 0000000..909cb07 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-pt_values-pt.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat -new file mode 100644 -index 0000000..31ddd75 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ro_values-ro.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat -new file mode 100644 -index 0000000..2c2ef6e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ru_values-ru.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat -new file mode 100644 -index 0000000..298899c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-si_values-si.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat -new file mode 100644 -index 0000000..993547f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sk_values-sk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat -new file mode 100644 -index 0000000..405cf2c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sl_values-sl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat -new file mode 100644 -index 0000000..ce21b1b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sq_values-sq.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat -new file mode 100644 -index 0000000..03dbf12 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sr_values-sr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat -new file mode 100644 -index 0000000..0679c9c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sv_values-sv.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat -new file mode 100644 -index 0000000..b68b421 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat -new file mode 100644 -index 0000000..7db0b49 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-sw_values-sw.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat -new file mode 100644 -index 0000000..d941629 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ta_values-ta.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat -new file mode 100644 -index 0000000..83c883d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-te_values-te.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat -new file mode 100644 -index 0000000..7f8a7fa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-th_values-th.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat -new file mode 100644 -index 0000000..bf72747 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tl_values-tl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat -new file mode 100644 -index 0000000..2055ebb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-tr_values-tr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat -new file mode 100644 -index 0000000..d77c346 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uk_values-uk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat -new file mode 100644 -index 0000000..87a6b30 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-ur_values-ur.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat -new file mode 100644 -index 0000000..c106db9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-uz_values-uz.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat -new file mode 100644 -index 0000000..f0cd4ef -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v16_values-v16.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat -new file mode 100644 -index 0000000..0ecd278 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v17_values-v17.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat -new file mode 100644 -index 0000000..b88a4fd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v18_values-v18.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat -new file mode 100644 -index 0000000..a064bf9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v21_values-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat -new file mode 100644 -index 0000000..42d88fc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v22_values-v22.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat -new file mode 100644 -index 0000000..5c29676 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v23_values-v23.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat -new file mode 100644 -index 0000000..2749614 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v24_values-v24.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat -new file mode 100644 -index 0000000..4e5c8c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v25_values-v25.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat -new file mode 100644 -index 0000000..7ecc3bf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v26_values-v26.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat -new file mode 100644 -index 0000000..9266241 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-v28_values-v28.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat -new file mode 100644 -index 0000000..8ded96c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-vi_values-vi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat -new file mode 100644 -index 0000000..8aa9873 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v20_values-watch-v20.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat -new file mode 100644 -index 0000000..8729bcb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-watch-v21_values-watch-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat -new file mode 100644 -index 0000000..db12a24 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-xlarge-v4_values-xlarge-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat -new file mode 100644 -index 0000000..05c2ea0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rCN_values-zh-rCN.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat -new file mode 100644 -index 0000000..760a64d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rHK_values-zh-rHK.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat -new file mode 100644 -index 0000000..6fd5a54 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zh-rTW_values-zh-rTW.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat -new file mode 100644 -index 0000000..010b48b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values-zu_values-zu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values_values.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values_values.arsc.flat -new file mode 100644 -index 0000000..e4b6398 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/values_values.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/xml_rn_dev_preferences.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/xml_rn_dev_preferences.xml.flat -new file mode 100644 -index 0000000..5847fd4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/compiled/release/xml_rn_dev_preferences.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat -new file mode 100644 -index 0000000..769b87d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat -new file mode 100644 -index 0000000..9ab1c05 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat -new file mode 100644 -index 0000000..22c59b2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_grow_fade_in_from_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat -new file mode 100644 -index 0000000..807fbdd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat -new file mode 100644 -index 0000000..33f3d57 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat -new file mode 100644 -index 0000000..b5ffc81 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat -new file mode 100644 -index 0000000..deff181 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat -new file mode 100644 -index 0000000..da05cff -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat -new file mode 100644 -index 0000000..ed9cf93 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_bottom.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat -new file mode 100644 -index 0000000..81c9c1a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_enter.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_enter.xml.flat -new file mode 100644 -index 0000000..6a73699 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_enter.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_exit.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_exit.xml.flat -new file mode 100644 -index 0000000..d1edd86 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_abc_tooltip_exit.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_in.xml.flat -new file mode 100644 -index 0000000..c74896e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_out.xml.flat -new file mode 100644 -index 0000000..06309f0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_fade_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_in.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_in.xml.flat -new file mode 100644 -index 0000000..a1bd9c8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_in.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_out.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_out.xml.flat -new file mode 100644 -index 0000000..3c8ee30 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_push_up_out.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_down.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_down.xml.flat -new file mode 100644 -index 0000000..af15b80 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_down.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_up.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_up.xml.flat -new file mode 100644 -index 0000000..5de8037 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/anim_catalyst_slide_up.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat -new file mode 100644 -index 0000000..4398349 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat -new file mode 100644 -index 0000000..26c03bd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat -new file mode 100644 -index 0000000..68c453a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_btn_colored_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat -new file mode 100644 -index 0000000..02c87a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_color_highlight_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat -new file mode 100644 -index 0000000..602d8ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_btn_checkable.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat -new file mode 100644 -index 0000000..f9a4dc0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_default.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat -new file mode 100644 -index 0000000..427f5a6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_edittext.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat -new file mode 100644 -index 0000000..6f0c42c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_seek_thumb.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat -new file mode 100644 -index 0000000..f2e64d3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_spinner.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat -new file mode 100644 -index 0000000..56d4ec8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color-v23_abc_tint_switch_track.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat -new file mode 100644 -index 0000000..1935028 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_light.xml.flat -new file mode 100644 -index 0000000..52450cb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_background_cache_hint_selector_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat -new file mode 100644 -index 0000000..ab2649a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_btn_colored_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat -new file mode 100644 -index 0000000..71c0600 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat -new file mode 100644 -index 0000000..ef8ec11 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_hint_foreground_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat -new file mode 100644 -index 0000000..69c70bc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat -new file mode 100644 -index 0000000..1ccf168 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_disable_only_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat -new file mode 100644 -index 0000000..b2fe522 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat -new file mode 100644 -index 0000000..56c5315 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_primary_text_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat -new file mode 100644 -index 0000000..da1a5c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_search_url_text.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat -new file mode 100644 -index 0000000..49d239e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat -new file mode 100644 -index 0000000..13a32ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_secondary_text_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat -new file mode 100644 -index 0000000..0ff7b29 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_btn_checkable.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat -new file mode 100644 -index 0000000..dd8ccee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat -new file mode 100644 -index 0000000..5c1cc6c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat -new file mode 100644 -index 0000000..5ea6baf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_seek_thumb.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat -new file mode 100644 -index 0000000..c7ae095 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat -new file mode 100644 -index 0000000..7e3cf05 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_abc_tint_switch_track.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat -new file mode 100644 -index 0000000..e71b810 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat -new file mode 100644 -index 0000000..917ff35 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/color_switch_thumb_material_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..be601fe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..ad45545 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..85d510a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..69f141f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..b8db7c9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..a6f63b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..593a3b2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..b652fb1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..36ba630 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..c4eafa5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..a66371a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..7738b69 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..5fc2c8c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..cfecdb1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..73fbaf8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..6997d83 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..9274f35 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..8708941 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..5f9e248 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..5a44fa8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..8651a62 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..35d082c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..60cfdd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..0a7af07 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..c11fc58 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..a858b3b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..bcf8c63 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..75ebe28 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..6623175 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..5cbbb16 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..95920d7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..a2d9b1f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..9304cfd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..7341e21 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..abe5c99 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..76f6869 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..ae91200 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..3645664 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..dda36f2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..b85f602 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..76d8d2f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..0c1808f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..18261b2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..6c0c294 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..3fb37b6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..c06bedf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..14acbc1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..3c2359a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..3b83819 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..e78ebea -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..95a6c7d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..f5352c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..e1401ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..20b96cb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..05c1a08 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..e6c5cd1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..1c1f8f4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..481629b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..40e5a71 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..5f25493 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..8b3cf38 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..4e5a9df -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..1d488e3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..4bba08f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..98a5064 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..5b899e2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..e2fa57c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..503d0bb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..79484b4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..878d020 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..7123ef6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..bc65ddc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..525418e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..4120863 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..3a7af8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..a6c17a3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..8d71285 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..a5c5081 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..33648cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..ffe4cd0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..d7464b8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..cb76ad8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..61e6a23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..555afc4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..32e3ae6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..9bf0b64 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..b873f24 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..af0aef0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..d06067f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..c46d74b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..a111008 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..6edb600 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..7ac3186 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..ea3a8b1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..34fea7b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..b48f3aa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..2e7aaf1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..de24906 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..caeb004 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..63897ea -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..c49cbad -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..349d54d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..232045c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..501bc8c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..b38ff73 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..367ef8b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..19f64e2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..92ef0ac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..f62ec7a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..b3beefa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..fce29d6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..b85e3ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..eaf9384 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..cbed8dc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..6b1b880 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..148e39f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..7f1ebf8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..67e5c8c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..b95c748 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat -new file mode 100644 -index 0000000..043d187 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat -new file mode 100644 -index 0000000..30376f9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_btn_colored_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_dialog_material_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_dialog_material_background.xml.flat -new file mode 100644 -index 0000000..683ab85 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_dialog_material_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat -new file mode 100644 -index 0000000..17b6d41 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_edit_text_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_list_divider_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_list_divider_material.xml.flat -new file mode 100644 -index 0000000..b8d4306 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_abc_list_divider_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat -new file mode 100644 -index 0000000..5112c11 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v21_notification_action_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat -new file mode 100644 -index 0000000..7d97a66 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-v23_abc_control_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat -new file mode 100644 -index 0000000..25973f9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..347c9c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..fad11bb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..799f0c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..a5810aa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..7c0217c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..a23b61b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..634e744 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..8b02647 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..5861547 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..6548945 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..6c8c6b0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..1b233ee -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..6af31c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..c2ce9d2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..bf697c3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..f24bb26 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..3a2e0a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..904babb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..0d489ae -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..81899de -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..77199a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..996b9f5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..c990662 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..80282eb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..2c1f251 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..57e1627 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..6590980 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..c408c61 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..1659a5e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..c473518 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..482a7e1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..f31a389 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..9adb8c6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..ff9503a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..74557ac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..4167801 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..9702092 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..a356f46 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..d41d7bf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..61592f7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..c9a8095 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..af748d3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..6634825 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..fbebc4f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..5f4b778 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..a03eaac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..4f9eb7c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat -new file mode 100644 -index 0000000..7a389b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat -new file mode 100644 -index 0000000..85ba261 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat -new file mode 100644 -index 0000000..4bfa433 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat -new file mode 100644 -index 0000000..5987442 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat -new file mode 100644 -index 0000000..e354224 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..69fb55c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..d6f8b18 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..ed96ce8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..469d30a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..9fe995a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..677b693 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..079312c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..f9ed973 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..f31ed5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..dba6d02 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..1947877 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..85fbc1e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..952d524 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..49f9074 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..32d9cda -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..6834001 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..855533a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..5668897 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..e2764ce -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..d022132 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..bbf921f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat -new file mode 100644 -index 0000000..8979bfb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat -new file mode 100644 -index 0000000..2375890 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat -new file mode 100644 -index 0000000..7f8c2ab -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat -new file mode 100644 -index 0000000..99e3544 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat -new file mode 100644 -index 0000000..5068c7d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat -new file mode 100644 -index 0000000..5364407 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..ff0915e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat -new file mode 100644 -index 0000000..de583ac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..6abced2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..cc427f7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..fbe84f3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..25d3b40 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..036a58a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..0732e49 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..d4e4b71 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..637aa85 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..50e8a89 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..d7599f8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat -new file mode 100644 -index 0000000..7dc6871 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat -new file mode 100644 -index 0000000..03b2c3a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..6c99456 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..e2720a9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..e4d792b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..404ab4d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..886f3b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..a3d5b6e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..d3f59c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..da299a3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat -new file mode 100644 -index 0000000..e3ef688 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat -new file mode 100644 -index 0000000..47b83ef -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat -new file mode 100644 -index 0000000..ff9102b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat -new file mode 100644 -index 0000000..fe52bbd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..6a55551 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..eb325b5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat -new file mode 100644 -index 0000000..1a29060 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..ed43b8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat -new file mode 100644 -index 0000000..3b6d847 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat -new file mode 100644 -index 0000000..7a299ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat -new file mode 100644 -index 0000000..eb63378 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat -new file mode 100644 -index 0000000..1e7b6f4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat -new file mode 100644 -index 0000000..3b47b5a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat -new file mode 100644 -index 0000000..3c612a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat -new file mode 100644 -index 0000000..2b4b76d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat -new file mode 100644 -index 0000000..68d5307 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat -new file mode 100644 -index 0000000..019992a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat -new file mode 100644 -index 0000000..c5fb239 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..b54f08a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat -new file mode 100644 -index 0000000..4f25b86 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat -new file mode 100644 -index 0000000..c781cb0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat -new file mode 100644 -index 0000000..4cdbe0d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat -new file mode 100644 -index 0000000..6278853 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat -new file mode 100644 -index 0000000..05b5c39 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat -new file mode 100644 -index 0000000..a73a7a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_borderless_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat -new file mode 100644 -index 0000000..f3ceeb1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_check_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat -new file mode 100644 -index 0000000..3d4ed39 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_default_mtrl_shape.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat -new file mode 100644 -index 0000000..c1de2d8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_btn_radio_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat -new file mode 100644 -index 0000000..5520d8d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_internal_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat -new file mode 100644 -index 0000000..d4d3e76 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_cab_background_top_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat -new file mode 100644 -index 0000000..a123d23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_ab_back_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat -new file mode 100644 -index 0000000..dd7c01a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat -new file mode 100644 -index 0000000..df7c9e2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_clear_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat -new file mode 100644 -index 0000000..477c62d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_go_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat -new file mode 100644 -index 0000000..0410c54 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_menu_overflow_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat -new file mode 100644 -index 0000000..d499b51 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat -new file mode 100644 -index 0000000..6327771 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ic_voice_search_api_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat -new file mode 100644 -index 0000000..7e5d10d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat -new file mode 100644 -index 0000000..035b5ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_item_background_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat -new file mode 100644 -index 0000000..e67e719 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat -new file mode 100644 -index 0000000..8f75afc -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat -new file mode 100644 -index 0000000..4d4a073 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat -new file mode 100644 -index 0000000..5e2f067 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_list_selector_holo_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat -new file mode 100644 -index 0000000..694b615 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_indicator_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat -new file mode 100644 -index 0000000..3a19391 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat -new file mode 100644 -index 0000000..76891c0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_ratingbar_small_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat -new file mode 100644 -index 0000000..4e3a47e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_thumb_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat -new file mode 100644 -index 0000000..a3fcdbb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_tick_mark_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat -new file mode 100644 -index 0000000..5f1ab44 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_seekbar_track_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat -new file mode 100644 -index 0000000..3ccc51f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_spinner_textfield_background_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat -new file mode 100644 -index 0000000..5be5731 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_switch_thumb_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat -new file mode 100644 -index 0000000..e887e69 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_tab_indicator_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat -new file mode 100644 -index 0000000..41c00a3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_text_cursor_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat -new file mode 100644 -index 0000000..a7fa375 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_textfield_search_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat -new file mode 100644 -index 0000000..afd9c8a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_abc_vector_test.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat -new file mode 100644 -index 0000000..5b1e67d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat -new file mode 100644 -index 0000000..98251f9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_bg_low.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat -new file mode 100644 -index 0000000..4fbba2d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_icon_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat -new file mode 100644 -index 0000000..52525d8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_notification_tile_bg.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_redbox_top_border_background.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_redbox_top_border_background.xml.flat -new file mode 100644 -index 0000000..3ec6aff -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_redbox_top_border_background.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat -new file mode 100644 -index 0000000..23402dd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_dark.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat -new file mode 100644 -index 0000000..75fe72a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/drawable_tooltip_frame_light.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat -new file mode 100644 -index 0000000..2d279f3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat -new file mode 100644 -index 0000000..b58db94 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_action_tombstone.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat -new file mode 100644 -index 0000000..af33ce8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_custom_big.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat -new file mode 100644 -index 0000000..e5bb6db -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v21_notification_template_icon_group.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat -new file mode 100644 -index 0000000..c52cddf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-v26_abc_screen_toolbar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat -new file mode 100644 -index 0000000..666ef37 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..292b70b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat -new file mode 100644 -index 0000000..a0741d2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_title_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat -new file mode 100644 -index 0000000..523fdaf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_bar_up_container.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..6597746 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat -new file mode 100644 -index 0000000..a28be4b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_menu_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat -new file mode 100644 -index 0000000..cb30fc5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_bar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat -new file mode 100644 -index 0000000..01edf77 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_action_mode_close_item_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat -new file mode 100644 -index 0000000..5727262 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat -new file mode 100644 -index 0000000..e461349 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_activity_chooser_view_list_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat -new file mode 100644 -index 0000000..863f3d0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_button_bar_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat -new file mode 100644 -index 0000000..1b763a1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..acc2fe3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_alert_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_cascading_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_cascading_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..22037d2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_cascading_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat -new file mode 100644 -index 0000000..79dda25 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_dialog_title_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat -new file mode 100644 -index 0000000..82eb280 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_expanded_menu_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat -new file mode 100644 -index 0000000..57a263e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_checkbox.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat -new file mode 100644 -index 0000000..f396be5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_icon.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..cddcdd8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat -new file mode 100644 -index 0000000..c2f0f0d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_list_menu_item_radio.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat -new file mode 100644 -index 0000000..165ac3b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_header_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat -new file mode 100644 -index 0000000..a95f9a5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_popup_menu_item_layout.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat -new file mode 100644 -index 0000000..c680c92 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_content_include.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat -new file mode 100644 -index 0000000..5cb7e2b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat -new file mode 100644 -index 0000000..b814659 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat -new file mode 100644 -index 0000000..9fe4c9f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_screen_toolbar.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat -new file mode 100644 -index 0000000..76e7f0a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat -new file mode 100644 -index 0000000..f9e1cc7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat -new file mode 100644 -index 0000000..ad6441b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_select_dialog_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_tooltip.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_tooltip.xml.flat -new file mode 100644 -index 0000000..f8860b0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_abc_tooltip.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_dev_loading_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_dev_loading_view.xml.flat -new file mode 100644 -index 0000000..0257593 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_dev_loading_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_fps_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_fps_view.xml.flat -new file mode 100644 -index 0000000..90b45d0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_fps_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat -new file mode 100644 -index 0000000..abe1ddb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_chronometer.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat -new file mode 100644 -index 0000000..90cfea1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_notification_template_part_time.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_frame.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_frame.xml.flat -new file mode 100644 -index 0000000..053be12 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_frame.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_title.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_title.xml.flat -new file mode 100644 -index 0000000..ff490d2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_item_title.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_view.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_view.xml.flat -new file mode 100644 -index 0000000..b5cae88 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_redbox_view.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat -new file mode 100644 -index 0000000..fcfefb8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_item_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat -new file mode 100644 -index 0000000..f24707d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_multichoice_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat -new file mode 100644 -index 0000000..9977016 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_select_dialog_singlechoice_material.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat -new file mode 100644 -index 0000000..8e92bd6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/layout_support_simple_spinner_dropdown_item.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat -new file mode 100644 -index 0000000..2a6eca2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat -new file mode 100644 -index 0000000..393a116 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat -new file mode 100644 -index 0000000..8bd8548 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-as_values-as.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-as_values-as.arsc.flat -new file mode 100644 -index 0000000..86e0d63 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-as_values-as.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat -new file mode 100644 -index 0000000..ecb2f8c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -new file mode 100644 -index 0000000..e149249 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat -new file mode 100644 -index 0000000..f9c20b1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat -new file mode 100644 -index 0000000..a7a8cd8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat -new file mode 100644 -index 0000000..b24d94f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat -new file mode 100644 -index 0000000..3c98dc0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat -new file mode 100644 -index 0000000..47f82b3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat -new file mode 100644 -index 0000000..7895d19 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat -new file mode 100644 -index 0000000..6d99be4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat -new file mode 100644 -index 0000000..0823164 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat -new file mode 100644 -index 0000000..c1d534a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat -new file mode 100644 -index 0000000..d94994c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rAU_values-en-rAU.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rCA_values-en-rCA.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rCA_values-en-rCA.arsc.flat -new file mode 100644 -index 0000000..77ba57f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rCA_values-en-rCA.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat -new file mode 100644 -index 0000000..1242864 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rGB_values-en-rGB.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat -new file mode 100644 -index 0000000..846becd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rIN_values-en-rIN.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rXC_values-en-rXC.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rXC_values-en-rXC.arsc.flat -new file mode 100644 -index 0000000..3c31672 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-en-rXC_values-en-rXC.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat -new file mode 100644 -index 0000000..04865d5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es-rUS_values-es-rUS.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat -new file mode 100644 -index 0000000..10225c5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat -new file mode 100644 -index 0000000..c045767 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat -new file mode 100644 -index 0000000..1a44e05 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat -new file mode 100644 -index 0000000..dbf7bd1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat -new file mode 100644 -index 0000000..2401a56 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat -new file mode 100644 -index 0000000..d52aa71 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr-rCA_values-fr-rCA.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat -new file mode 100644 -index 0000000..c5b915c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat -new file mode 100644 -index 0000000..79e1462 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat -new file mode 100644 -index 0000000..287b0c7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat -new file mode 100644 -index 0000000..523fc31 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat -new file mode 100644 -index 0000000..f4ab3fe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat -new file mode 100644 -index 0000000..81c991f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat -new file mode 100644 -index 0000000..74080d0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat -new file mode 100644 -index 0000000..d056e53 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat -new file mode 100644 -index 0000000..2dcf3eb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat -new file mode 100644 -index 0000000..3adda14 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat -new file mode 100644 -index 0000000..a73e84b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat -new file mode 100644 -index 0000000..aad184a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat -new file mode 100644 -index 0000000..4436de3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat -new file mode 100644 -index 0000000..79f3191 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat -new file mode 100644 -index 0000000..9e4c844 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat -new file mode 100644 -index 0000000..d0a198f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat -new file mode 100644 -index 0000000..0062b9c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat -new file mode 100644 -index 0000000..7e43b67 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat -new file mode 100644 -index 0000000..8f16cd0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat -new file mode 100644 -index 0000000..17d0008 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat -new file mode 100644 -index 0000000..0da2490 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-land_values-land.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat -new file mode 100644 -index 0000000..903ab82 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-large-v4_values-large-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat -new file mode 100644 -index 0000000..83d8f6d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat -new file mode 100644 -index 0000000..4cc0f79 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat -new file mode 100644 -index 0000000..350fcc4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat -new file mode 100644 -index 0000000..587f16e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat -new file mode 100644 -index 0000000..02ddf7c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat -new file mode 100644 -index 0000000..cd827f0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat -new file mode 100644 -index 0000000..65e4186 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat -new file mode 100644 -index 0000000..719a859 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat -new file mode 100644 -index 0000000..278682c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat -new file mode 100644 -index 0000000..5c863e3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat -new file mode 100644 -index 0000000..de0044e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat -new file mode 100644 -index 0000000..2dccad8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat -new file mode 100644 -index 0000000..9e921d8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-night-v8_values-night-v8.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat -new file mode 100644 -index 0000000..99204d0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-or_values-or.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-or_values-or.arsc.flat -new file mode 100644 -index 0000000..acbeab2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-or_values-or.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat -new file mode 100644 -index 0000000..21c3fd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat -new file mode 100644 -index 0000000..d061831 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat -new file mode 100644 -index 0000000..d163f81 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-port_values-port.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat -new file mode 100644 -index 0000000..b188ef9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rBR_values-pt-rBR.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat -new file mode 100644 -index 0000000..6dc1cdb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt-rPT_values-pt-rPT.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat -new file mode 100644 -index 0000000..3c27dff -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat -new file mode 100644 -index 0000000..c315eba -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat -new file mode 100644 -index 0000000..4b154fa -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat -new file mode 100644 -index 0000000..545ac5b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat -new file mode 100644 -index 0000000..59a270d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat -new file mode 100644 -index 0000000..d8cd1da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat -new file mode 100644 -index 0000000..2d9e6b7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat -new file mode 100644 -index 0000000..3d87709 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat -new file mode 100644 -index 0000000..93fe3e7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat -new file mode 100644 -index 0000000..85fdef5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat -new file mode 100644 -index 0000000..b704062 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat -new file mode 100644 -index 0000000..4a274a7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat -new file mode 100644 -index 0000000..fa146e5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat -new file mode 100644 -index 0000000..601bd92 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat -new file mode 100644 -index 0000000..fe79fc2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat -new file mode 100644 -index 0000000..8658784 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat -new file mode 100644 -index 0000000..04eac20 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat -new file mode 100644 -index 0000000..dd3831a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat -new file mode 100644 -index 0000000..6139242 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat -new file mode 100644 -index 0000000..9a64228 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat -new file mode 100644 -index 0000000..a305c26 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat -new file mode 100644 -index 0000000..12e93ce -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat -new file mode 100644 -index 0000000..4f56357 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat -new file mode 100644 -index 0000000..22d00ed -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat -new file mode 100644 -index 0000000..6b9e861 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat -new file mode 100644 -index 0000000..81821b3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat -new file mode 100644 -index 0000000..9c35c9b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat -new file mode 100644 -index 0000000..cfd5a24 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v28_values-v28.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v28_values-v28.arsc.flat -new file mode 100644 -index 0000000..3d64fa1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-v28_values-v28.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat -new file mode 100644 -index 0000000..538a638 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v20_values-watch-v20.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v20_values-watch-v20.arsc.flat -new file mode 100644 -index 0000000..2a675b6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v20_values-watch-v20.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v21_values-watch-v21.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v21_values-watch-v21.arsc.flat -new file mode 100644 -index 0000000..0d52e7d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-watch-v21_values-watch-v21.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat -new file mode 100644 -index 0000000..b126f6a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat -new file mode 100644 -index 0000000..63185e2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rCN_values-zh-rCN.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat -new file mode 100644 -index 0000000..95049e0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rHK_values-zh-rHK.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat -new file mode 100644 -index 0000000..b577c71 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zh-rTW_values-zh-rTW.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat -new file mode 100644 -index 0000000..4f6f169 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat -new file mode 100644 -index 0000000..5a332b4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/xml_rn_dev_preferences.xml.flat b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/xml_rn_dev_preferences.xml.flat -new file mode 100644 -index 0000000..7593dd4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/androidTest/debug/xml_rn_dev_preferences.xml.flat differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml -new file mode 100644 -index 0000000..da7ee29 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml -new file mode 100644 -index 0000000..c81b39a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml -new file mode 100644 -index 0000000..79d02d4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_grow_fade_in_from_bottom.xml -@@ -0,0 +1,30 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -new file mode 100644 -index 0000000..91664da ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -new file mode 100644 -index 0000000..db7e807 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml -new file mode 100644 -index 0000000..9a23cd2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_shrink_fade_out_from_bottom.xml -@@ -0,0 +1,27 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml -new file mode 100644 -index 0000000..1afa8fe ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -new file mode 100644 -index 0000000..ab824f2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml -new file mode 100644 -index 0000000..b309fe8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -new file mode 100644 -index 0000000..e84d1c7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml -new file mode 100644 -index 0000000..134d9d7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_enter.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml -new file mode 100644 -index 0000000..67f6af8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/abc_tooltip_exit.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml -new file mode 100644 -index 0000000..7fe329f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_in.xml -@@ -0,0 +1,7 @@ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml -new file mode 100644 -index 0000000..4919eda ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_fade_out.xml -@@ -0,0 +1,7 @@ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml -new file mode 100644 -index 0000000..aef91bc ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml -@@ -0,0 +1,13 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml -new file mode 100644 -index 0000000..790e275 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml -@@ -0,0 +1,13 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_down.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_down.xml -new file mode 100644 -index 0000000..01876e5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_down.xml -@@ -0,0 +1,6 @@ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml -new file mode 100644 -index 0000000..6c96f69 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/anim/catalyst_slide_up.xml -@@ -0,0 +1,6 @@ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v21/abc_btn_colored_borderless_text_material.xml -new file mode 100644 -index 0000000..f5585e3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_borderless_text_material.xml -new file mode 100644 -index 0000000..468b155 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml -new file mode 100644 -index 0000000..74170d6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_btn_colored_text_material.xml -@@ -0,0 +1,23 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml -new file mode 100644 -index 0000000..8d53611 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_color_highlight_material.xml -@@ -0,0 +1,23 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml -new file mode 100644 -index 0000000..e82eff4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_btn_checkable.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml -new file mode 100644 -index 0000000..abe3880 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_default.xml -@@ -0,0 +1,25 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml -new file mode 100644 -index 0000000..0e05e07 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_edittext.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml -new file mode 100644 -index 0000000..4fc9626 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_seek_thumb.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml -new file mode 100644 -index 0000000..0e05e07 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_spinner.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml -new file mode 100644 -index 0000000..e663772 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color-v23/abc_tint_switch_track.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml -new file mode 100644 -index 0000000..e016076 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml -new file mode 100644 -index 0000000..290faf1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_background_cache_hint_selector_material_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml -new file mode 100644 -index 0000000..897a3f7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_btn_colored_text_material.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml -new file mode 100644 -index 0000000..fe86872 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_dark.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml -new file mode 100644 -index 0000000..1bef5af ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_hint_foreground_material_light.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml -new file mode 100644 -index 0000000..724c255 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml -new file mode 100644 -index 0000000..7395e68 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_disable_only_material_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml -new file mode 100644 -index 0000000..7d66d02 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml -new file mode 100644 -index 0000000..105b643 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_primary_text_material_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml -new file mode 100644 -index 0000000..0631d5d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml -new file mode 100644 -index 0000000..6399b1d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml -new file mode 100644 -index 0000000..87c015a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_secondary_text_material_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml -new file mode 100644 -index 0000000..0c663f6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_btn_checkable.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_default.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_default.xml -new file mode 100644 -index 0000000..8d7c391 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_default.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml -new file mode 100644 -index 0000000..536d77f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_edittext.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml -new file mode 100644 -index 0000000..cb53788 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_seek_thumb.xml -@@ -0,0 +1,21 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml -new file mode 100644 -index 0000000..44333dd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_spinner.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml -new file mode 100644 -index 0000000..22322f8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/abc_tint_switch_track.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml -new file mode 100644 -index 0000000..6153382 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml -new file mode 100644 -index 0000000..94d7114 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/color/switch_thumb_material_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..706fc1f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..e78bcaf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -new file mode 100644 -index 0000000..8610c50 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -new file mode 100644 -index 0000000..63d0e5d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png -new file mode 100644 -index 0000000..cd1f57c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png -new file mode 100644 -index 0000000..a728afe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png -new file mode 100644 -index 0000000..64b2aa7 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png -new file mode 100644 -index 0000000..54d3065 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png -new file mode 100644 -index 0000000..cf270fe -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png -new file mode 100644 -index 0000000..49ad6cd -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png -new file mode 100644 -index 0000000..1aa9965 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_focused_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_longpressed_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png -new file mode 100644 -index 0000000..ebf3f6c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png -new file mode 100644 -index 0000000..d3556a8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -new file mode 100644 -index 0000000..428bfab -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png -new file mode 100644 -index 0000000..183c9ac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png -new file mode 100644 -index 0000000..829d5b2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png -new file mode 100644 -index 0000000..9b67079 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png -new file mode 100644 -index 0000000..6ebed8b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..a262b0c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..d8eaf07 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..254f806 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..f9cba8f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..198a842 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..87bf8d3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..284c3c2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..3cdb6cf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..7d4c690 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..90fe333 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..559b835 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..a282219 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -new file mode 100644 -index 0000000..1492ab6 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -new file mode 100644 -index 0000000..7c011af -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png -new file mode 100644 -index 0000000..36f664c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png -new file mode 100644 -index 0000000..3f5d25e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png -new file mode 100644 -index 0000000..2ddcdd9 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png -new file mode 100644 -index 0000000..c636ce8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png -new file mode 100644 -index 0000000..077f9b0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png -new file mode 100644 -index 0000000..ac6ad11 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png -new file mode 100644 -index 0000000..0065111 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_focused_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_longpressed_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png -new file mode 100644 -index 0000000..87e48ec -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png -new file mode 100644 -index 0000000..e243fd8 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -new file mode 100644 -index 0000000..d001cea -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png -new file mode 100644 -index 0000000..55b8b36 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png -new file mode 100644 -index 0000000..f415390 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png -new file mode 100644 -index 0000000..e6eff09 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png -new file mode 100644 -index 0000000..aa239b3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_action_bar_item_background_material.xml -new file mode 100644 -index 0000000..595c56c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml -new file mode 100644 -index 0000000..10251aa ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_btn_colored_material.xml -@@ -0,0 +1,50 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml -new file mode 100644 -index 0000000..7ef438b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_dialog_material_background.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml -new file mode 100644 -index 0000000..d98b008 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_edit_text_material.xml -@@ -0,0 +1,37 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml -new file mode 100644 -index 0000000..5ed2121 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/abc_list_divider_material.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml -new file mode 100644 -index 0000000..f3b47cb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v21/notification_action_background.xml -@@ -0,0 +1,36 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml -new file mode 100644 -index 0000000..0b54039 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-v23/abc_control_background_material.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml -new file mode 100644 -index 0000000..242761b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-watch-v20/abc_dialog_material_background.xml -@@ -0,0 +1,19 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..8e664eb -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..cd38901 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -new file mode 100644 -index 0000000..9aabc43 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -new file mode 100644 -index 0000000..c8bae19 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -new file mode 100644 -index 0000000..6be7e09 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png -new file mode 100644 -index 0000000..35fe965 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png -new file mode 100644 -index 0000000..45887c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png -new file mode 100644 -index 0000000..7be2280 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png -new file mode 100644 -index 0000000..ea6033a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png -new file mode 100644 -index 0000000..2f4818b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png -new file mode 100644 -index 0000000..2456a74 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_focused_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -new file mode 100644 -index 0000000..76ed4f3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png -new file mode 100644 -index 0000000..529d550 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -new file mode 100644 -index 0000000..3dcebcf -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png -new file mode 100644 -index 0000000..1f8cc88 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -new file mode 100644 -index 0000000..8df3718 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png -new file mode 100644 -index 0000000..6c8f6a4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png -new file mode 100644 -index 0000000..bdf477b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..90d6ba3 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..63e541f -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -new file mode 100644 -index 0000000..f71485c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -new file mode 100644 -index 0000000..162ab98 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -new file mode 100644 -index 0000000..d95a377 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png -new file mode 100644 -index 0000000..e5509b0 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png -new file mode 100644 -index 0000000..72685ab -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png -new file mode 100644 -index 0000000..918a395 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png -new file mode 100644 -index 0000000..8e985b4 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png -new file mode 100644 -index 0000000..19bbc12 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png -new file mode 100644 -index 0000000..601bf0c -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_focused_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -new file mode 100644 -index 0000000..278cb23 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png -new file mode 100644 -index 0000000..d6a8790 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png -new file mode 100644 -index 0000000..d71dbd1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png -new file mode 100644 -index 0000000..de00185 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -new file mode 100644 -index 0000000..56d677d -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png -new file mode 100644 -index 0000000..d186a5b -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png -new file mode 100644 -index 0000000..6758084 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png -new file mode 100644 -index 0000000..397fd91 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png -new file mode 100644 -index 0000000..6c8428a -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png -new file mode 100644 -index 0000000..9084c38 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png -new file mode 100644 -index 0000000..ba16aac -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png -new file mode 100644 -index 0000000..cc81097 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png -new file mode 100644 -index 0000000..dc312c1 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png -new file mode 100644 -index 0000000..67e25d5 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png -new file mode 100644 -index 0000000..1c7f66e -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png -new file mode 100644 -index 0000000..82e7293 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png -new file mode 100644 -index 0000000..b028a36 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png -new file mode 100644 -index 0000000..2c6d0da -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png -new file mode 100644 -index 0000000..565f0b2 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png -new file mode 100644 -index 0000000..714b641 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png -new file mode 100644 -index 0000000..894c734 -Binary files /dev/null and b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png differ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml -new file mode 100644 -index 0000000..f389460 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_borderless_material.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml -new file mode 100644 -index 0000000..f6e938f ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_check_material.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml -new file mode 100644 -index 0000000..c50d4b1 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_default_mtrl_shape.xml -@@ -0,0 +1,32 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml -new file mode 100644 -index 0000000..6e9f9cf ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_btn_radio_material.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml -new file mode 100644 -index 0000000..9faf60a ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_internal_bg.xml -@@ -0,0 +1,23 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml -new file mode 100644 -index 0000000..f20add7 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_cab_background_top_material.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml -new file mode 100644 -index 0000000..5a89523 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_ab_back_material.xml -@@ -0,0 +1,27 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_arrow_drop_right_black_24dp.xml -new file mode 100644 -index 0000000..68547eb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/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/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml -new file mode 100644 -index 0000000..e6d106b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_clear_material.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml -new file mode 100644 -index 0000000..0c88119 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_go_search_api_material.xml -@@ -0,0 +1,25 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml -new file mode 100644 -index 0000000..1420edd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_menu_overflow_material.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml -new file mode 100644 -index 0000000..b4cba34 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_search_api_material.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml -new file mode 100644 -index 0000000..143db55 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ic_voice_search_api_material.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml -new file mode 100644 -index 0000000..72162c2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_dark.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml -new file mode 100644 -index 0000000..1c180b2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_item_background_holo_light.xml -@@ -0,0 +1,26 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml -new file mode 100644 -index 0000000..0add58c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_dark.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml -new file mode 100644 -index 0000000..0c1d3e6 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_background_transition_holo_light.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml -new file mode 100644 -index 0000000..1fb5fc4 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_dark.xml -@@ -0,0 +1,27 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml -new file mode 100644 -index 0000000..8d24047 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_list_selector_holo_light.xml -@@ -0,0 +1,28 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml -new file mode 100644 -index 0000000..bc339a3 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_indicator_material.xml -@@ -0,0 +1,29 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml -new file mode 100644 -index 0000000..dde914e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_material.xml -@@ -0,0 +1,29 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml -new file mode 100644 -index 0000000..6daff8b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_ratingbar_small_material.xml -@@ -0,0 +1,27 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml -new file mode 100644 -index 0000000..7fea83b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_thumb_material.xml -@@ -0,0 +1,35 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml -new file mode 100644 -index 0000000..e2d86c9 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_tick_mark_material.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml -new file mode 100644 -index 0000000..e68ac03 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_seekbar_track_material.xml -@@ -0,0 +1,40 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml -new file mode 100644 -index 0000000..d0f46a8 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_spinner_textfield_background_material.xml -@@ -0,0 +1,36 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml -new file mode 100644 -index 0000000..ee96ec2 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_switch_thumb_material.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml -new file mode 100644 -index 0000000..1a8de1b ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_tab_indicator_material.xml -@@ -0,0 +1,20 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml -new file mode 100644 -index 0000000..885670c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_text_cursor_material.xml -@@ -0,0 +1,23 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml -new file mode 100644 -index 0000000..0887396 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_textfield_search_material.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml -new file mode 100644 -index 0000000..d5da2cb ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/abc_vector_test.xml -@@ -0,0 +1,25 @@ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg.xml -new file mode 100644 -index 0000000..1232b4c ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg.xml -@@ -0,0 +1,24 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml -new file mode 100644 -index 0000000..72e58ae ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_bg_low.xml -@@ -0,0 +1,23 @@ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml -new file mode 100644 -index 0000000..490a797 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_icon_background.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml -new file mode 100644 -index 0000000..8eee7ef ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/notification_tile_bg.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/redbox_top_border_background.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/redbox_top_border_background.xml -new file mode 100644 -index 0000000..32e4bbd ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/redbox_top_border_background.xml -@@ -0,0 +1,17 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml -new file mode 100644 -index 0000000..43c2f99 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_dark.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml -new file mode 100644 -index 0000000..20966d5 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/drawable/tooltip_frame_light.xml -@@ -0,0 +1,22 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml -new file mode 100644 -index 0000000..7199c25 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action.xml -@@ -0,0 +1,41 @@ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml -new file mode 100644 -index 0000000..7ef38fa ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_action_tombstone.xml -@@ -0,0 +1,48 @@ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml -new file mode 100644 -index 0000000..9e3666e ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_custom_big.xml -@@ -0,0 +1,90 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -\ No newline at end of file -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml -new file mode 100644 -index 0000000..8fadd67 ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v21/notification_template_icon_group.xml -@@ -0,0 +1,42 @@ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml -new file mode 100644 -index 0000000..25412ba ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-v26/abc_screen_toolbar.xml -@@ -0,0 +1,54 @@ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -+ -diff --git a/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml -new file mode 100644 -index 0000000..773065d ---- /dev/null -+++ b/node_modules/@stream-io/flat-list-mvcp/android/build/intermediates/res/merged/release/layout-watch-v20/abc_alert_dialog_button_bar_material.xml -@@ -0,0 +1,51 @@ -+ -+ -+ -+ -+ -+