From cb1f23bbb0f05da53631c9665e1bae35f4c6fa97 Mon Sep 17 00:00:00 2001 From: Santhosh Vaiyapuri Date: Wed, 9 Mar 2022 15:04:53 +0100 Subject: [PATCH 01/19] feat(sampleApp): add clean scripts to yarn --- examples/SampleApp/package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/SampleApp/package.json b/examples/SampleApp/package.json index 1b1d3ed2f7..82ccbf42fe 100644 --- a/examples/SampleApp/package.json +++ b/examples/SampleApp/package.json @@ -19,10 +19,12 @@ "bootstrap-ci": "yarn install --frozen-lockfile", "release": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/prod", "release-next": "echo \"Skipping next release for SampleApp\"", - "test:unit": "echo \"Skipping unit tests for SampleApp\"" + "test:unit": "echo \"Skipping unit tests for SampleApp\"", + "clean": "watchman watch-del-all && yarn cache clean && rm -rf ios/build && pod cache clean --all && rm -rf android/build && cd android && ./gradlew clean && cd -", + "clean-all": "yarn clean && rm -rf node_modules && rm -rf ios/Pods && yarn install && npx pod-install" }, "dependencies": { - "@react-native-async-storage/async-storage": "1.15.6", + "@react-native-async-storage/async-storage": "1.15.17", "@react-native-community/cameraroll": "4.0.4", "@react-native-community/masked-view": "0.1.11", "@react-native-community/netinfo": "6.0.0", From 772028de546c51c62418fd7a744d2b164f624b49 Mon Sep 17 00:00:00 2001 From: Santhosh Vaiyapuri Date: Wed, 9 Mar 2022 15:26:36 +0100 Subject: [PATCH 02/19] feat(sampleApp): update to react-native 0.67 --- .github/workflows/sample-distribution.yml | 2 +- examples/SampleApp/android/app/build.gradle | 2 +- examples/SampleApp/android/build.gradle | 11 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- examples/SampleApp/ios/Podfile | 2 +- examples/SampleApp/ios/Podfile.lock | 442 +++++++++--------- .../ios/SampleApp.xcodeproj/project.pbxproj | 8 +- examples/SampleApp/package.json | 10 +- examples/SampleApp/yarn.lock | 209 ++++----- 9 files changed, 322 insertions(+), 366 deletions(-) diff --git a/.github/workflows/sample-distribution.yml b/.github/workflows/sample-distribution.yml index fd4b2c14bd..22960693b1 100644 --- a/.github/workflows/sample-distribution.yml +++ b/.github/workflows/sample-distribution.yml @@ -26,7 +26,7 @@ jobs: yarn; cd ../../examples/SampleApp cd ios - pod update RCT-Folly --no-repo-update && pod install + pod install - name: Build and release Testflight QA env: MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} diff --git a/examples/SampleApp/android/app/build.gradle b/examples/SampleApp/android/app/build.gradle index d81642091e..e493f6e21d 100644 --- a/examples/SampleApp/android/app/build.gradle +++ b/examples/SampleApp/android/app/build.gradle @@ -119,7 +119,7 @@ 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 + * This should be set on project.ext.react and that value will be read 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. */ diff --git a/examples/SampleApp/android/build.gradle b/examples/SampleApp/android/build.gradle index abc9ad9600..5de63e791c 100644 --- a/examples/SampleApp/android/build.gradle +++ b/examples/SampleApp/android/build.gradle @@ -26,8 +26,6 @@ buildscript { 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") @@ -36,9 +34,14 @@ allprojects { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } - + mavenCentral { + // We don't want to fetch react-native from Maven Central as there are + // older versions over there. + content { + excludeGroup "com.facebook.react" + } + } 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/SampleApp/android/gradle/wrapper/gradle-wrapper.properties b/examples/SampleApp/android/gradle/wrapper/gradle-wrapper.properties index 3b87f9aa77..7876fb8195 100644 --- a/examples/SampleApp/android/gradle/wrapper/gradle-wrapper.properties +++ b/examples/SampleApp/android/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ 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 +distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip diff --git a/examples/SampleApp/ios/Podfile b/examples/SampleApp/ios/Podfile index 0c95ff8cda..2759db4266 100644 --- a/examples/SampleApp/ios/Podfile +++ b/examples/SampleApp/ios/Podfile @@ -27,6 +27,6 @@ target 'SampleApp' do use_flipper!() post_install do |installer| react_native_post_install(installer) - # __apply_Xcode_12_5_M1_post_install_workaround(installer) + __apply_Xcode_12_5_M1_post_install_workaround(installer) end end diff --git a/examples/SampleApp/ios/Podfile.lock b/examples/SampleApp/ios/Podfile.lock index 06595b5493..e42bc44ad8 100644 --- a/examples/SampleApp/ios/Podfile.lock +++ b/examples/SampleApp/ios/Podfile.lock @@ -2,14 +2,14 @@ PODS: - boost (1.76.0) - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - FBLazyVector (0.66.3) - - FBReactNativeSpec (0.66.3): + - FBLazyVector (0.67.3) + - FBReactNativeSpec (0.67.3): - RCT-Folly (= 2021.06.28.00-v2) - - RCTRequired (= 0.66.3) - - RCTTypeSafety (= 0.66.3) - - React-Core (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) + - RCTRequired (= 0.67.3) + - RCTTypeSafety (= 0.67.3) + - React-Core (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) - Firebase/Analytics (8.8.0): - Firebase/Core - Firebase/AppDistribution (8.8.0): @@ -199,203 +199,203 @@ PODS: - fmt (~> 6.2.1) - glog - libevent - - RCTRequired (0.66.3) - - RCTTypeSafety (0.66.3): - - FBLazyVector (= 0.66.3) + - RCTRequired (0.67.3) + - RCTTypeSafety (0.67.3): + - FBLazyVector (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTRequired (= 0.66.3) - - React-Core (= 0.66.3) - - React (0.66.3): - - React-Core (= 0.66.3) - - React-Core/DevSupport (= 0.66.3) - - React-Core/RCTWebSocket (= 0.66.3) - - React-RCTActionSheet (= 0.66.3) - - React-RCTAnimation (= 0.66.3) - - React-RCTBlob (= 0.66.3) - - React-RCTImage (= 0.66.3) - - React-RCTLinking (= 0.66.3) - - React-RCTNetwork (= 0.66.3) - - React-RCTSettings (= 0.66.3) - - React-RCTText (= 0.66.3) - - React-RCTVibration (= 0.66.3) - - React-callinvoker (0.66.3) - - React-Core (0.66.3): + - RCTRequired (= 0.67.3) + - React-Core (= 0.67.3) + - React (0.67.3): + - React-Core (= 0.67.3) + - React-Core/DevSupport (= 0.67.3) + - React-Core/RCTWebSocket (= 0.67.3) + - React-RCTActionSheet (= 0.67.3) + - React-RCTAnimation (= 0.67.3) + - React-RCTBlob (= 0.67.3) + - React-RCTImage (= 0.67.3) + - React-RCTLinking (= 0.67.3) + - React-RCTNetwork (= 0.67.3) + - React-RCTSettings (= 0.67.3) + - React-RCTText (= 0.67.3) + - React-RCTVibration (= 0.67.3) + - React-callinvoker (0.67.3) + - React-Core (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.3) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-Core/Default (= 0.67.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/CoreModulesHeaders (0.66.3): + - React-Core/CoreModulesHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/Default (0.66.3): + - React-Core/Default (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/DevSupport (0.66.3): + - React-Core/DevSupport (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.3) - - React-Core/RCTWebSocket (= 0.66.3) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-jsinspector (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-Core/Default (= 0.67.3) + - React-Core/RCTWebSocket (= 0.67.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-jsinspector (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTActionSheetHeaders (0.66.3): + - React-Core/RCTActionSheetHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTAnimationHeaders (0.66.3): + - React-Core/RCTAnimationHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTBlobHeaders (0.66.3): + - React-Core/RCTBlobHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTImageHeaders (0.66.3): + - React-Core/RCTImageHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTLinkingHeaders (0.66.3): + - React-Core/RCTLinkingHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTNetworkHeaders (0.66.3): + - React-Core/RCTNetworkHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTSettingsHeaders (0.66.3): + - React-Core/RCTSettingsHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTTextHeaders (0.66.3): + - React-Core/RCTTextHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTVibrationHeaders (0.66.3): + - React-Core/RCTVibrationHeaders (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - React-Core/Default - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-Core/RCTWebSocket (0.66.3): + - React-Core/RCTWebSocket (0.67.3): - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/Default (= 0.66.3) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-perflogger (= 0.66.3) + - React-Core/Default (= 0.67.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-perflogger (= 0.67.3) - Yoga - - React-CoreModules (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - React-CoreModules (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.3) - - React-Core/CoreModulesHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - React-RCTImage (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-cxxreact (0.66.3): + - RCTTypeSafety (= 0.67.3) + - React-Core/CoreModulesHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - React-RCTImage (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-cxxreact (0.67.3): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-callinvoker (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsinspector (= 0.66.3) - - React-logger (= 0.66.3) - - React-perflogger (= 0.66.3) - - React-runtimeexecutor (= 0.66.3) - - React-hermes (0.66.3): + - React-callinvoker (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsinspector (= 0.67.3) + - React-logger (= 0.67.3) + - React-perflogger (= 0.67.3) + - React-runtimeexecutor (= 0.67.3) + - React-hermes (0.67.3): - DoubleConversion - glog - hermes-engine - RCT-Folly (= 2021.06.28.00-v2) - RCT-Folly/Futures (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-jsiexecutor (= 0.66.3) - - React-jsinspector (= 0.66.3) - - React-perflogger (= 0.66.3) - - React-jsi (0.66.3): + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-jsiexecutor (= 0.67.3) + - React-jsinspector (= 0.67.3) + - React-perflogger (= 0.67.3) + - React-jsi (0.67.3): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-jsi/Default (= 0.66.3) - - React-jsi/Default (0.66.3): + - React-jsi/Default (= 0.67.3) + - React-jsi/Default (0.67.3): - boost (= 1.76.0) - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-jsiexecutor (0.66.3): + - React-jsiexecutor (0.67.3): - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-perflogger (= 0.66.3) - - React-jsinspector (0.66.3) - - React-logger (0.66.3): + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-perflogger (= 0.67.3) + - React-jsinspector (0.67.3) + - React-logger (0.67.3): - glog - react-native-cameraroll (4.0.4): - React-Core @@ -407,72 +407,72 @@ PODS: - React-Core - react-native-safe-area-context (3.2.0): - React-Core - - React-perflogger (0.66.3) - - React-RCTActionSheet (0.66.3): - - React-Core/RCTActionSheetHeaders (= 0.66.3) - - React-RCTAnimation (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - React-perflogger (0.67.3) + - React-RCTActionSheet (0.67.3): + - React-Core/RCTActionSheetHeaders (= 0.67.3) + - React-RCTAnimation (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.3) - - React-Core/RCTAnimationHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTBlob (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - RCTTypeSafety (= 0.67.3) + - React-Core/RCTAnimationHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTBlob (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/RCTBlobHeaders (= 0.66.3) - - React-Core/RCTWebSocket (= 0.66.3) - - React-jsi (= 0.66.3) - - React-RCTNetwork (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTImage (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - React-Core/RCTBlobHeaders (= 0.67.3) + - React-Core/RCTWebSocket (= 0.67.3) + - React-jsi (= 0.67.3) + - React-RCTNetwork (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTImage (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.3) - - React-Core/RCTImageHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - React-RCTNetwork (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTLinking (0.66.3): - - FBReactNativeSpec (= 0.66.3) - - React-Core/RCTLinkingHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTNetwork (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - RCTTypeSafety (= 0.67.3) + - React-Core/RCTImageHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - React-RCTNetwork (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTLinking (0.67.3): + - FBReactNativeSpec (= 0.67.3) + - React-Core/RCTLinkingHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTNetwork (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.3) - - React-Core/RCTNetworkHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTSettings (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - RCTTypeSafety (= 0.67.3) + - React-Core/RCTNetworkHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTSettings (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - RCTTypeSafety (= 0.66.3) - - React-Core/RCTSettingsHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-RCTText (0.66.3): - - React-Core/RCTTextHeaders (= 0.66.3) - - React-RCTVibration (0.66.3): - - FBReactNativeSpec (= 0.66.3) + - RCTTypeSafety (= 0.67.3) + - React-Core/RCTSettingsHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-RCTText (0.67.3): + - React-Core/RCTTextHeaders (= 0.67.3) + - React-RCTVibration (0.67.3): + - FBReactNativeSpec (= 0.67.3) - RCT-Folly (= 2021.06.28.00-v2) - - React-Core/RCTVibrationHeaders (= 0.66.3) - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (= 0.66.3) - - React-runtimeexecutor (0.66.3): - - React-jsi (= 0.66.3) - - ReactCommon/turbomodule/core (0.66.3): + - React-Core/RCTVibrationHeaders (= 0.67.3) + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (= 0.67.3) + - React-runtimeexecutor (0.67.3): + - React-jsi (= 0.67.3) + - ReactCommon/turbomodule/core (0.67.3): - DoubleConversion - glog - RCT-Folly (= 2021.06.28.00-v2) - - React-callinvoker (= 0.66.3) - - React-Core (= 0.66.3) - - React-cxxreact (= 0.66.3) - - React-jsi (= 0.66.3) - - React-logger (= 0.66.3) - - React-perflogger (= 0.66.3) - - RNCAsyncStorage (1.15.6): + - React-callinvoker (= 0.67.3) + - React-Core (= 0.67.3) + - React-cxxreact (= 0.67.3) + - React-jsi (= 0.67.3) + - React-logger (= 0.67.3) + - React-perflogger (= 0.67.3) + - RNCAsyncStorage (1.15.17): - React-Core - RNCMaskedView (0.1.11): - React @@ -491,7 +491,7 @@ PODS: - TOCropViewController - RNReactNativeHapticFeedback (1.11.0): - React-Core - - RNReanimated (2.2.3): + - RNReanimated (2.3.3): - DoubleConversion - FBLazyVector - FBReactNativeSpec @@ -517,7 +517,6 @@ PODS: - React-RCTNetwork - React-RCTSettings - React-RCTText - - React-RCTVibration - ReactCommon/turbomodule/core - Yoga - RNScreens (3.2.0): @@ -563,6 +562,7 @@ DEPENDENCIES: - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (~> 0.9.0) - libevent (~> 2.1.12) + - OpenSSL-Universal (= 1.1.180) - 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`) @@ -736,8 +736,8 @@ SPEC CHECKSUMS: boost: a7c83b31436843459a1961bfd74b96033dc77234 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 - FBLazyVector: de148e8310b8b878db304ceea2fec13f2c02e3a0 - FBReactNativeSpec: 6192956c9e346013d5f1809ba049af720b11c6a4 + FBLazyVector: 808f741ddb0896a20e5b98cc665f5b3413b072e2 + FBReactNativeSpec: 94473205b8741b61402e8c51716dea34aa3f5b2f Firebase: 629510f1a9ddb235f3a7c5c8ceb23ba887f0f814 FirebaseAnalytics: 5506ea8b867d8423485a84b4cd612d279f7b0b8a FirebaseAppDistribution: fa46fb0898b0f31e0fe428b32059e2baed653d21 @@ -755,7 +755,7 @@ SPEC CHECKSUMS: Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: 5337263514dd6f09803962437687240c5dc39aa4 + glog: 85ecdd10ee8d8ec362ef519a6a45ff9aa27b2e85 GoogleAppMeasurement: 5ba1164e3c844ba84272555e916d0a6d3d977e91 GoogleDataTransport: 85fd18ff3019bb85d3f2c551d04c481dedf71fc9 GoogleUtilities: 8de2a97a17e15b6b98e38e8770e2d129a57c0040 @@ -764,50 +764,50 @@ SPEC CHECKSUMS: nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96 OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b PromisesObjC: 68159ce6952d93e17b2dfe273b8c40907db5ba58 - RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9 - RCTRequired: 59d2b744d8c2bf2d9bc7032a9f654809adcf7d50 - RCTTypeSafety: d0aaf7ccae5c70a4aaa3a5c3e9e0db97efae760e - React: fbe655dd1d12c052299b61abdc576720098d80fc - React-callinvoker: a535746608d9bc8b1dea7095ed4d8d3d7aae9a05 - React-Core: 008d2638c4f80b189c8e170ff2d241027ec517fd - React-CoreModules: 91c9a03f4e1b74494c087d9c9a29e89a3145c228 - React-cxxreact: 9c462fb6d59f865855e2dee2097c7d87b3d2de49 - React-hermes: 79103a3907b81b7eeb394b37612b991076d27472 - React-jsi: 4de8b8d70ba4ed841eb9b772bdb719f176387e21 - React-jsiexecutor: 433a691aee158533a6a6ee9c86cb4a1684fa2853 - React-jsinspector: d9c8eb0b53f0da206fed56612b289fec84991157 - React-logger: e522e76fa3e9ec3e7d7115b49485cc065cf4ae06 + RCT-Folly: 803a9cfd78114b2ec0f140cfa6fa2a6bafb2d685 + RCTRequired: 3c77b683474faf23920fbefc71c4e13af21470c0 + RCTTypeSafety: 720b1841260dac692444c2822b27403178da8b28 + React: 25970dd74abbdac449ca66dec4107652cacc606d + React-callinvoker: 2d158700bc27b3d49c3c95721d288ed6c1a489ef + React-Core: 306cfdc1393bcf9481cc5de9807608db7661817b + React-CoreModules: 2576a88d630899f3fcdf2cb79fcc0454d7b2a8bb + React-cxxreact: a492f0de07d875419dcb9f463c63c22fe51c433b + React-hermes: 4321bcd6fce09f8c6d1be355da31e1cdae7bfac6 + React-jsi: bca092b0c38d5e3fd60bb491d4994ab4a8ac2ad3 + React-jsiexecutor: 15ea57ead631a11fad57634ff69f78e797113a39 + React-jsinspector: 1e1e03345cf6d47779e2061d679d0a87d9ae73d8 + React-logger: 1e10789cb84f99288479ba5f20822ce43ced6ffe react-native-cameraroll: 88f4e62d9ecd0e1f253abe4f685474f2ea14bfa2 react-native-document-picker: 1a7518132d4a06b67f459be9bb1464a567d2b3b4 react-native-image-resizer: d9fb629a867335bdc13230ac2a58702bb8c8828f react-native-netinfo: e849fc21ca2f4128a5726c801a82fc6f4a6db50d react-native-safe-area-context: f0906bf8bc9835ac9a9d3f97e8bde2a997d8da79 - React-perflogger: 73732888d37d4f5065198727b167846743232882 - React-RCTActionSheet: 96c6d774fa89b1f7c59fc460adc3245ba2d7fd79 - React-RCTAnimation: 8940cfd3a8640bd6f6372150dbdb83a79bcbae6c - React-RCTBlob: e80de5fdf952a4f226a00fc54f3db526809f92f7 - React-RCTImage: f990d6b272c7e89ff864caf0bccfb620ab3ca5d0 - React-RCTLinking: 2280ed0d5ffb78954b484b90228d597b5f941c5f - React-RCTNetwork: 1359fa853c216616e711b810dcb8682a6a8e7564 - React-RCTSettings: 84958860aaa3639f0249e751ea7702c62eb67188 - React-RCTText: 196cf06b8cb6229d8c6dd9fc9057bdf97db5d3fb - React-RCTVibration: 50cfe7049167cfc7e83ac5542c6fff0c76791a9b - React-runtimeexecutor: bbbdb3d8fcf327c6e2249ee71b6ef1764b7dc266 - ReactCommon: 9bac022ab71596f2b0fde1268272543184c63971 - RNCAsyncStorage: b7c6564ce662366dd44d0189456183ef7eda2d4d + React-perflogger: 93d3f142d6d9a46e635f09ba0518027215a41098 + React-RCTActionSheet: 87327c3722203cc79cf79d02fb83e7332aeedd18 + React-RCTAnimation: 009c87c018d50e0b38692699405ebe631ff4872d + React-RCTBlob: 9e30308cc1b127af11c8f858514d2d8638ce36d7 + React-RCTImage: b9460cb8e3acc51410735a234a9dffbf4964f540 + React-RCTLinking: 73ecf0b87b515383a08ebbf07f558c48de1f0027 + React-RCTNetwork: 8f63119f2da99a94515ad0e0d0a13f9b3f6fe89d + React-RCTSettings: b827282b1ac2bd98515c0c09f5cbc5062ebd83b0 + React-RCTText: 6d09140f514e1f60aff255e0acdf16e3b486ba4c + React-RCTVibration: d0361f15ea978958fab7ffb6960f475b5063d83f + React-runtimeexecutor: af1946623656f9c5fd64ca6f36f3863516193446 + ReactCommon: 650e33cde4fb7d36781cd3143f5276da0abb2f96 + RNCAsyncStorage: 6bd5a7ba3dde1c3facba418aa273f449bdc5437a RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489 RNFS: 3ab21fa6c56d65566d1fb26c2228e2b6132e5e32 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 RNImageCropPicker: 35a3ceb837446fa11547704709bb22b5fac6d584 RNReactNativeHapticFeedback: 653a8c126a0f5e88ce15ffe280b3ff37e1fbb285 - RNReanimated: b04ef2a4f0cb61b062bbcf033f84a9e470f4f60b + RNReanimated: 3ad6ec4e147462206be9d1c925df10b6ea850b0e RNScreens: c277bfc4b5bb7c2fe977d19635df6f974f95dfd6 RNShare: 755de6bac084428f8fd8fb54c376f126f40e560c RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f TOCropViewController: 3105367e808b7d3d886a74ff59bf4804e7d3ab38 - Yoga: 32a18c0e845e185f4a2a66ec76e1fd1f958f22fa + Yoga: 90dcd029e45d8a7c1ff059e8b3c6612ff409061a YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 1937b90414bd756a72d28359e6dc43372ed7b0ca +PODFILE CHECKSUM: a640bd2ecc4e73329d8379590f3ee5bc09ecba5f COCOAPODS: 1.11.2 diff --git a/examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj b/examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj index 88eb0fc1fe..e7ac866283 100644 --- a/examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj +++ b/examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj @@ -578,7 +578,7 @@ COPY_PHASE_STRIP = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -600,8 +600,8 @@ "$(inherited)", ); LIBRARY_SEARCH_PATHS = ( + "\"$(SDKROOT)/usr/lib/swift\"", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = YES; @@ -643,7 +643,7 @@ COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 i386"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -658,8 +658,8 @@ "$(inherited)", ); LIBRARY_SEARCH_PATHS = ( + "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", - "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; diff --git a/examples/SampleApp/package.json b/examples/SampleApp/package.json index 82ccbf42fe..e8059e66b9 100644 --- a/examples/SampleApp/package.json +++ b/examples/SampleApp/package.json @@ -35,7 +35,7 @@ "@stream-io/flat-list-mvcp": "0.10.1", "patch-package": "6.4.7", "react": "17.0.2", - "react-native": "0.66.3", + "react-native": "0.67.3", "react-native-document-picker": "5.0.4", "react-native-fs": "2.18.0", "react-native-gesture-handler": "1.10.3", @@ -43,7 +43,7 @@ "react-native-image-crop-picker": "0.36.2", "react-native-image-resizer": "1.4.5", "react-native-markdown-package": "1.8.1", - "react-native-reanimated": "2.2.3", + "react-native-reanimated": "2.3.3", "react-native-safe-area-context": "3.2.0", "react-native-screens": "3.2.0", "react-native-share": "6.0.1", @@ -52,11 +52,11 @@ "stream-chat-react-native-core": "link:../../package" }, "devDependencies": { - "@babel/core": "7.13.10", - "@babel/runtime": "7.13.10", + "@babel/core": "^7.12.9", + "@babel/runtime": "^7.12.5", "@react-native-community/eslint-config": "2.0.0", "@types/jest": "26.0.23", - "@types/react-native": "0.64.5", + "@types/react-native": "0.67.2", "@types/react-test-renderer": "17.0.1", "@typescript-eslint/eslint-plugin": "4.24.0", "@typescript-eslint/parser": "4.24.0", diff --git a/examples/SampleApp/yarn.lock b/examples/SampleApp/yarn.lock index 8a3a044813..85e67d69be 100644 --- a/examples/SampleApp/yarn.lock +++ b/examples/SampleApp/yarn.lock @@ -16,7 +16,7 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7": +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg== @@ -28,29 +28,7 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34" integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng== -"@babel/core@7.13.10": - version "7.13.10" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.10.tgz#07de050bbd8193fcd8a3c27918c0890613a94559" - integrity sha512-bfIYcT0BdKeAZrovpMqX2Mx5NrgAckGbwT982AkdS5GNfn3KMGiprlBAtmBcFZRUmpaufS6WZFP8trvx8ptFDw== - dependencies: - "@babel/code-frame" "^7.12.13" - "@babel/generator" "^7.13.9" - "@babel/helper-compilation-targets" "^7.13.10" - "@babel/helper-module-transforms" "^7.13.0" - "@babel/helpers" "^7.13.10" - "@babel/parser" "^7.13.10" - "@babel/template" "^7.12.13" - "@babel/traverse" "^7.13.0" - "@babel/types" "^7.13.0" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.1.2" - lodash "^4.17.19" - semver "^6.3.0" - source-map "^0.5.0" - -"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.7.5": +"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.14.0", "@babel/core@^7.7.5": version "7.17.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.17.5.tgz#6cd2e836058c28f06a4ca8ee7ed955bbf37c8225" integrity sha512-/BBMw4EvjmyquN5O+t5eh0+YqB3XXJkYD2cjKpYtWOfFy4lQ4UozNSmxAcWT8r2XtZs0ewG+zrfsqeR15i1ajA== @@ -71,7 +49,7 @@ json5 "^2.1.2" semver "^6.3.0" -"@babel/generator@^7.13.9", "@babel/generator@^7.14.0", "@babel/generator@^7.17.3": +"@babel/generator@^7.14.0", "@babel/generator@^7.17.3": version "7.17.3" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200" integrity sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg== @@ -95,7 +73,7 @@ "@babel/helper-explode-assignable-expression" "^7.16.7" "@babel/types" "^7.16.7" -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.16.7": +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz#06e66c5f299601e6c7da350049315e83209d551b" integrity sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA== @@ -191,7 +169,7 @@ dependencies: "@babel/types" "^7.16.7" -"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.16.7": +"@babel/helper-module-transforms@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz#7665faeb721a01ca5327ddc6bba15a5cb34b6a41" integrity sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng== @@ -278,7 +256,7 @@ "@babel/traverse" "^7.16.8" "@babel/types" "^7.16.8" -"@babel/helpers@^7.13.10", "@babel/helpers@^7.17.2": +"@babel/helpers@^7.17.2": version "7.17.2" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.17.2.tgz#23f0a0746c8e287773ccd27c14be428891f63417" integrity sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ== @@ -296,7 +274,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.13.10", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3", "@babel/parser@^7.7.0": +"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3", "@babel/parser@^7.7.0": version "7.17.3" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0" integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA== @@ -748,14 +726,14 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.12.0", "@babel/runtime@^7.13.10", "@babel/runtime@^7.16.3", "@babel/runtime@^7.8.4": +"@babel/runtime@^7.12.0", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.8.4": version "7.17.2" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941" integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw== dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.0.0", "@babel/template@^7.12.13", "@babel/template@^7.16.7", "@babel/template@^7.3.3": +"@babel/template@^7.0.0", "@babel/template@^7.16.7", "@babel/template@^7.3.3": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155" integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w== @@ -780,7 +758,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.13.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": +"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.7.0": version "7.17.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== @@ -823,16 +801,6 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" -"@gorhom/bottom-sheet@3.6.4": - version "3.6.4" - resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-3.6.4.tgz#9f8c590493e1067dd638b69d7d7f1e86089844fc" - integrity sha512-jWZH64tur/PdwCdv6Ojt3Q85f/Q2LuyHV7gYjrN/30INnQw8ArRTOLUmLoLnwWFxeh561JdQ+XTvE53Hjo9wOw== - dependencies: - "@gorhom/portal" "^1.0.4" - invariant "^2.2.4" - nanoid "^3.1.20" - react-native-redash "^16.0.10" - "@gorhom/bottom-sheet@4.1.5": version "4.1.5" resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-4.1.5.tgz#35341d45799de28082c380db6639537b04fa0b26" @@ -843,7 +811,7 @@ nanoid "^3.1.20" react-native-redash "^16.1.1" -"@gorhom/portal@^1.0.11", "@gorhom/portal@^1.0.4": +"@gorhom/portal@^1.0.11": version "1.0.12" resolved "https://registry.yarnpkg.com/@gorhom/portal/-/portal-1.0.12.tgz#1c0deabb3f9057c736352a88bae9ca891a100346" integrity sha512-JOYe85RUwiksgdMbhLWDCLpH3kgFFz+LCu1lnxOMMBQSfAKtL5kkTKVrhtmQ3Lq3lJM2paGnLc4wJrlVuaC5Jw== @@ -1106,10 +1074,10 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@react-native-async-storage/async-storage@1.15.6": - version "1.15.6" - resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.15.6.tgz#a4fd461d2d891326e006d2284d060229f6c2b328" - integrity sha512-kVfy6O5Xbce9GfD9Islxn5JaOczNz6dF3Ce/7tP4foVLPNwo7UfdgXeKZ7iac07ZbvDvViSUuNyzzrN81FgqkQ== +"@react-native-async-storage/async-storage@1.15.17": + version "1.15.17" + resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.15.17.tgz#0dae263a52e476ffce871086f1fef5b8e44708eb" + integrity sha512-NQCFs47aFEch9kya/bqwdpvSdZaVRtzU7YB02L8VrmLSLpKgQH/1VwzFUBPcc1/JI1s3GU4yOLVrEbwxq+Fqcw== dependencies: merge-options "^3.0.4" @@ -1294,10 +1262,10 @@ resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e" integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ== -"@react-native/normalize-color@1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-1.0.0.tgz#c52a99d4fe01049102d47dc45d40cbde4f720ab6" - integrity sha512-xUNRvNmCl3UGCPbbHvfyFMnpvLPoOjDCcp5bT9m2k+TF/ZBklEQwhPZlkrxRx2NhgFh1X3a5uL7mJ7ZR+8G7Qg== +"@react-native/normalize-color@2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567" + integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw== "@react-native/polyfills@2.0.0": version "2.0.0" @@ -1448,6 +1416,11 @@ resolved "https://registry.yarnpkg.com/@types/hammerjs/-/hammerjs-2.0.41.tgz#f6ecf57d1b12d2befcce00e928a6a097c22980aa" integrity sha512-ewXv/ceBaJprikMcxCmWU1FKyMAQ2X7a9Gtmzw8fcg2kIePI1crERDM818W+XYrxqdBBOdlf2rm137bU+BltCA== +"@types/invariant@^2.2.35": + version "2.2.35" + resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be" + integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg== + "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": version "2.0.4" resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" @@ -1480,7 +1453,7 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d" integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ== -"@types/jsonwebtoken@^8.5.0", "@types/jsonwebtoken@^8.5.6": +"@types/jsonwebtoken@^8.5.6": version "8.5.8" resolved "https://registry.yarnpkg.com/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz#01b39711eb844777b7af1d1f2b4cf22fda1c0c44" integrity sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A== @@ -1514,10 +1487,10 @@ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.4.tgz#fcf7205c25dff795ee79af1e30da2c9790808f11" integrity sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ== -"@types/react-native@0.64.5": - version "0.64.5" - resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.5.tgz#219738b52b2e372ec057d3c8f20fbd6c37b245cd" - integrity sha512-k0r8MnQX7UFboZDvMKLov26gFLXKrNgLhCfSVhjaZ6wMUofKijxvee7/wgfAqtT2zS5FR4an4+qn0r72SCbw3g== +"@types/react-native@0.67.2": + version "0.67.2" + resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.2.tgz#801656be65b875cf215cd09de208436df92fa356" + integrity sha512-DyBkq7kw1UngzfvBr8WE41+hL/TWpxOZVaeABJz6Si7DmpT0Rq6vJCYjVaR85ViKSYJvIHpzxYfp0dD+lb3ctA== dependencies: "@types/react" "*" @@ -1849,11 +1822,6 @@ ajv@^8.0.1: require-from-string "^2.0.2" uri-js "^4.2.2" -anchorme@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/anchorme/-/anchorme-1.1.2.tgz#86112384219e530a531e5b380f16b2fe54ada08a" - integrity sha1-hhEjhCGeUwpTHls4Dxay/lStoIo= - anser@^1.4.9: version "1.4.10" resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.10.tgz#befa3eddf282684bd03b63dcda3927aef8c2e35b" @@ -2046,13 +2014,6 @@ atob@^2.1.2: resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -axios@^0.21.1: - version "0.21.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" - integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== - dependencies: - follow-redirects "^1.14.0" - axios@^0.22.0: version "0.22.0" resolved "https://registry.yarnpkg.com/axios/-/axios-0.22.0.tgz#bf702c41fb50fbca4539589d839a077117b79b25" @@ -3633,10 +3594,10 @@ flow-parser@^0.121.0: resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f" integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg== -follow-redirects@^1.14.0, follow-redirects@^1.14.4: - version "1.14.8" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.8.tgz#016996fb9a11a100566398b1c6839337d7bfa8fc" - integrity sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA== +follow-redirects@^1.14.4: + version "1.14.9" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7" + integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w== for-in@^1.0.2: version "1.0.2" @@ -5115,6 +5076,11 @@ lodash.isboolean@^3.0.3: resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= + lodash.isinteger@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" @@ -5150,7 +5116,7 @@ lodash.truncate@^4.4.2: resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= -lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.7.0: +lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.21, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== @@ -6365,14 +6331,19 @@ react-art@^17.0.2: object-assign "^4.1.1" scheduler "^0.20.2" -react-devtools-core@^4.13.0: - version "4.23.0" - resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.23.0.tgz#dff9d12202a472ef62632203d6de3877dc6e58be" - integrity sha512-KkzneT1LczFtebbTJlvRphIRvzuHLhI9ghfrseVv9ktBs+l2cXy8Svw5U16lzQnwU9okVEcURmGPgH79WWrlaw== +react-devtools-core@4.19.1: + version "4.19.1" + resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.19.1.tgz#bc37c2ef2f48f28c6af4c7292be9dca1b63deace" + integrity sha512-2wJiGffPWK0KggBjVwnTaAk+Z3MSxKInHmdzPTrBh1mAarexsa93Kw+WMX88+XjN+TtYgAiLe9xeTqcO5FfJTw== dependencies: shell-quote "^1.6.1" ws "^7" +react-freeze@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/react-freeze/-/react-freeze-1.0.0.tgz#b21c65fe1783743007c8c9a2952b1c8879a77354" + integrity sha512-yQaiOqDmoKqks56LN9MTgY06O0qQHgV4FUrikH357DydArSZHQhl0BJFqGKIZoTqi8JizF9Dxhuk1FIZD6qCaw== + "react-is@^16.12.0 || ^17.0.0", react-is@^17.0.1, react-is@^17.0.2: version "17.0.2" resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" @@ -6383,10 +6354,10 @@ react-is@^16.13.0, react-is@^16.13.1, react-is@^16.7.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-native-codegen@^0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.7.tgz#86651c5c5fec67a8077ef7f4e36f7ed459043e14" - integrity sha512-dwNgR8zJ3ALr480QnAmpTiqvFo+rDtq6V5oCggKhYFlRjzOmVSFn3YD41u8ltvKS5G2nQ8gCs2vReFFnRGLYng== +react-native-codegen@^0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.8.tgz#b7796a54074139d956fff2862cf1285db43c891b" + integrity sha512-k/944+0XD+8l7zDaiKfYabyEKmAmyZgS1mj+4LcSRPyHnrjgCHKrh/Y6jM6kucQ6xU1+1uyMmF/dSkikxK8i+Q== dependencies: flow-parser "^0.121.0" jscodeshift "^0.11.0" @@ -6453,17 +6424,20 @@ react-native-markdown-package@1.8.1: react-native-lightbox "^0.7.0" simple-markdown "^0.7.1" -react-native-reanimated@2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-2.2.3.tgz#edecfe477ad9efac6f006f7e1194e8c9aa4fc6d5" - integrity sha512-d+BV39Jp4Om0ZkgVjop672/004ytlTfDT01EloO3HFZs9wR2QTuCjekq8yi3xl0G2xGZKd4DXhvqabIa7OnMYA== +react-native-reanimated@2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-2.3.3.tgz#73de8ea495e59a091d848741e7037ac55d0235c4" + integrity sha512-uQofwsWUoKLY4QDgSdNbRxnqQDaQEPLLBNO9SP64JfQ2fDRJD5rjb4d3S29F0z9FqTnsWEwTL2Sl0spdx9xvHA== dependencies: "@babel/plugin-transform-object-assign" "^7.10.4" - fbjs "^3.0.0" + "@types/invariant" "^2.2.35" + invariant "^2.2.4" + lodash.isequal "^4.5.0" mockdate "^3.0.2" + react-native-screens "^3.4.0" string-hash-64 "^1.0.3" -react-native-redash@^16.0.10, react-native-redash@^16.1.1: +react-native-redash@^16.1.1: version "16.2.3" resolved "https://registry.yarnpkg.com/react-native-redash/-/react-native-redash-16.2.3.tgz#ee63e100c60f83275116e57d4e8bc79f26349db9" integrity sha512-vSjHA6/mBY3IpDYPish3DlG06PKNLkb/b89hw7nsDM3yxAJ7Db+yMnEL3pp2YsoYblDc3s+0+wBRlvxay4X4vQ== @@ -6482,6 +6456,14 @@ react-native-screens@3.2.0: resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.2.0.tgz#e2c8a4879c72f49af5b49e8859c84978a95d112b" integrity sha512-pV4a32neQA69xhVsL9k1J/rM/SiP5zgGHjJsnNVEcuhBu+dlsutT2YFszQN4MgpP2dhHHu1O7DyRSHti+wh7Wg== +react-native-screens@^3.4.0: + version "3.13.1" + resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.13.1.tgz#b3b1c5788dca25a71668909f66d87fb35c5c5241" + integrity sha512-xcrnuUs0qUrGpc2gOTDY4VgHHADQwp80mwR1prU/Q0JqbZN5W3koLhuOsT6FkSRKjR5t40l+4LcjhHdpqRB2HA== + dependencies: + react-freeze "^1.0.0" + warn-once "^0.1.0" + react-native-share@6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/react-native-share/-/react-native-share-6.0.1.tgz#e982be50e33490dbd953ec26375230df1188770a" @@ -6502,17 +6484,17 @@ react-native-url-polyfill@^1.3.0: dependencies: whatwg-url-without-unicode "8.0.0-3" -react-native@0.66.3: - version "0.66.3" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.66.3.tgz#25c7c4c7d81867326b3eb7a36f0fe6a61fa4104e" - integrity sha512-B/dQpuvta9YvF5MihDWefoGlTvxzUHK5X5RjdrXHAu/ihTehJXxEA+m6z/tufp1ZUMDjU+tMZK6gnehzCuYfzw== +react-native@0.67.3: + version "0.67.3" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.67.3.tgz#ee8bafb644afbe511a4a2c8e9c144a9720d06dd8" + integrity sha512-epMVRMRH7dLCis97+YwiV4dmTVZO6qKmQgwcTNcxVt/kEMxAa+OYK7h81+99/n7XCeMFk/U2zYOBuQqc7c5Amg== dependencies: "@jest/create-cache-key-function" "^27.0.1" "@react-native-community/cli" "^6.0.0" "@react-native-community/cli-platform-android" "^6.0.0" "@react-native-community/cli-platform-ios" "^6.0.0" "@react-native/assets" "1.0.0" - "@react-native/normalize-color" "1.0.0" + "@react-native/normalize-color" "2.0.0" "@react-native/polyfills" "2.0.0" abort-controller "^3.0.0" anser "^1.4.9" @@ -6521,7 +6503,6 @@ react-native@0.66.3: hermes-engine "~0.9.0" invariant "^2.2.4" jsc-android "^250230.2.1" - metro-babel-register "0.66.2" metro-react-native-babel-transformer "0.66.2" metro-runtime "0.66.2" metro-source-map "0.66.2" @@ -6529,8 +6510,8 @@ react-native@0.66.3: pretty-format "^26.5.2" promise "^8.0.3" prop-types "^15.7.2" - react-devtools-core "^4.13.0" - react-native-codegen "^0.0.7" + react-devtools-core "4.19.1" + react-native-codegen "^0.0.8" react-refresh "^0.4.0" regenerator-runtime "^0.13.2" scheduler "^0.20.2" @@ -7238,24 +7219,6 @@ stream-buffers@2.2.x: resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4" integrity sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ= -stream-chat-react-native-core@3.10.2: - version "3.10.2" - resolved "https://registry.yarnpkg.com/stream-chat-react-native-core/-/stream-chat-react-native-core-3.10.2.tgz#2fe9245b6f170754f8312c657833ea5de9bc0b3f" - integrity sha512-5UQI9BkzFj37i/y776LKRjPLi1krLE6NlF5F4VLY1mkkuy0vNGP8byw0xSDcrUAtC4yKiU5LtlzpApBU8Bs8fw== - dependencies: - "@babel/runtime" "7.13.10" - "@gorhom/bottom-sheet" "3.6.4" - anchorme "^1.1.2" - dayjs "1.10.5" - file-loader "6.2.0" - i18next "20.2.4" - lodash-es "4.17.21" - metro-react-native-babel-preset "0.66.0" - path "0.12.7" - react-art "^17.0.2" - react-native-markdown-package "1.8.1" - stream-chat "~3.13.1" - "stream-chat-react-native-core@link:../../package": version "0.0.0" uid "" @@ -7279,21 +7242,6 @@ stream-chat@6.0.0: jsonwebtoken "^8.5.1" ws "^7.4.4" -stream-chat@~3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/stream-chat/-/stream-chat-3.13.1.tgz#1692246dd74968dee7596a6a8c1e1a02656bb634" - integrity sha512-JWgVwRgmAE/a7P9i+LK2Lr2C4dXfRaedm2c4jKsZuMPR6KwINIy0kgdGyds3Xqmp4/LPSfhXZJ7wExmlfo9+7g== - dependencies: - "@babel/runtime" "^7.13.10" - "@types/jsonwebtoken" "^8.5.0" - "@types/ws" "^7.4.0" - axios "^0.21.1" - base64-js "^1.5.1" - form-data "^4.0.0" - isomorphic-ws "^4.0.1" - jsonwebtoken "^8.5.1" - ws "^7.4.4" - strict-uri-encode@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" @@ -7848,6 +7796,11 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.12" +warn-once@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/warn-once/-/warn-once-0.1.0.tgz#4f58d89b84f968d0389176aa99e0cf0f14ffd4c8" + integrity sha512-recZTSvuaH/On5ZU5ywq66y99lImWqzP93+AiUo9LUwG8gXHW+LJjhOd6REJHm7qb0niYqrEQJvbHSQfuJtTqA== + wcwidth@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" From 2e14dabe7c670325a89d426e839185f813479bc1 Mon Sep 17 00:00:00 2001 From: Santhosh Vaiyapuri Date: Wed, 9 Mar 2022 15:33:03 +0100 Subject: [PATCH 03/19] chore: remove nativeMessaging example app --- examples/NativeMessaging/.buckconfig | 6 - examples/NativeMessaging/.eslintrc.json | 189 - examples/NativeMessaging/.flowconfig | 63 - examples/NativeMessaging/.gitattributes | 3 - examples/NativeMessaging/.gitignore | 59 - examples/NativeMessaging/.watchmanconfig | 1 - examples/NativeMessaging/App.js | 198 - examples/NativeMessaging/Readme.md | 37 - .../NativeMessaging/__tests__/App-test.js | 14 - examples/NativeMessaging/_editorconfig | 3 - examples/NativeMessaging/android/app/_BUCK | 55 - .../NativeMessaging/android/app/build.gradle | 223 - .../android/app/build_defs.bzl | 19 - .../android/app/proguard-rules.pro | 66 - .../java/com/nativemessaging/DetoxTest.java | 31 - .../android/app/src/debug/AndroidManifest.xml | 13 - .../nativemessaging/ReactNativeFlipper.java | 72 - .../android/app/src/main/AndroidManifest.xml | 31 - .../com/nativemessaging/MainActivity.java | 28 - .../com/nativemessaging/MainApplication.java | 88 - .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 3056 -> 0 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 5024 -> 0 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 2096 -> 0 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 2858 -> 0 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 4569 -> 0 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 7098 -> 0 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 6464 -> 0 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 10676 -> 0 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 9250 -> 0 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 15523 -> 0 bytes .../app/src/main/res/values/strings.xml | 3 - .../app/src/main/res/values/styles.xml | 9 - .../main/res/xml/network_security_config.xml | 7 - examples/NativeMessaging/android/build.gradle | 47 - .../NativeMessaging/android/gradle.properties | 29 - .../android/gradle/wrapper/gradle-wrapper.jar | Bin 59203 -> 0 bytes .../gradle/wrapper/gradle-wrapper.properties | 6 - examples/NativeMessaging/android/gradlew | 185 - examples/NativeMessaging/android/gradlew.bat | 89 - .../NativeMessaging/android/settings.gradle | 3 - examples/NativeMessaging/app.json | 5 - examples/NativeMessaging/babel.config.js | 4 - examples/NativeMessaging/index.js | 7 - .../NativeMessaging.xcodeproj/project.pbxproj | 689 - .../xcschemes/NativeMessaging.xcscheme | 88 - .../contents.xcworkspacedata | 10 - .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../ios/NativeMessaging/AppDelegate.h | 8 - .../ios/NativeMessaging/AppDelegate.m | 62 - .../AppIcon.appiconset/Contents.json | 53 - .../Images.xcassets/Contents.json | 6 - .../ios/NativeMessaging/Info.plist | 63 - .../NativeMessaging/LaunchScreen.storyboard | 47 - .../ios/NativeMessaging/main.m | 9 - .../ios/NativeMessagingTests/Info.plist | 24 - .../NativeMessagingTests.m | 65 - examples/NativeMessaging/ios/Podfile | 28 - examples/NativeMessaging/ios/Podfile.lock | 663 - examples/NativeMessaging/metro.config.js | 19 - examples/NativeMessaging/package.json | 51 - .../@stream-io+flat-list-mvcp+0.10.1.patch | 68727 --------------- .../react-native-haptic-feedback+1.11.0.patch | 71776 ---------------- .../NativeMessaging/useStreamChatTheme.ts | 72 - examples/NativeMessaging/yarn.lock | 7632 -- 64 files changed, 151693 deletions(-) delete mode 100644 examples/NativeMessaging/.buckconfig delete mode 100644 examples/NativeMessaging/.eslintrc.json delete mode 100644 examples/NativeMessaging/.flowconfig delete mode 100644 examples/NativeMessaging/.gitattributes delete mode 100644 examples/NativeMessaging/.gitignore delete mode 100644 examples/NativeMessaging/.watchmanconfig delete mode 100644 examples/NativeMessaging/App.js delete mode 100644 examples/NativeMessaging/Readme.md delete mode 100644 examples/NativeMessaging/__tests__/App-test.js delete mode 100644 examples/NativeMessaging/_editorconfig delete mode 100644 examples/NativeMessaging/android/app/_BUCK delete mode 100644 examples/NativeMessaging/android/app/build.gradle delete mode 100644 examples/NativeMessaging/android/app/build_defs.bzl delete mode 100644 examples/NativeMessaging/android/app/proguard-rules.pro delete mode 100644 examples/NativeMessaging/android/app/src/androidTest/java/com/nativemessaging/DetoxTest.java delete mode 100644 examples/NativeMessaging/android/app/src/debug/AndroidManifest.xml delete mode 100644 examples/NativeMessaging/android/app/src/debug/java/com/nativemessaging/ReactNativeFlipper.java delete mode 100644 examples/NativeMessaging/android/app/src/main/AndroidManifest.xml delete mode 100644 examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainActivity.java delete mode 100644 examples/NativeMessaging/android/app/src/main/java/com/nativemessaging/MainApplication.java delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png delete mode 100644 examples/NativeMessaging/android/app/src/main/res/values/strings.xml delete mode 100644 examples/NativeMessaging/android/app/src/main/res/values/styles.xml delete mode 100644 examples/NativeMessaging/android/app/src/main/res/xml/network_security_config.xml delete mode 100644 examples/NativeMessaging/android/build.gradle delete mode 100644 examples/NativeMessaging/android/gradle.properties delete mode 100644 examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.jar delete mode 100644 examples/NativeMessaging/android/gradle/wrapper/gradle-wrapper.properties delete mode 100755 examples/NativeMessaging/android/gradlew delete mode 100644 examples/NativeMessaging/android/gradlew.bat delete mode 100644 examples/NativeMessaging/android/settings.gradle delete mode 100644 examples/NativeMessaging/app.json delete mode 100644 examples/NativeMessaging/babel.config.js delete mode 100644 examples/NativeMessaging/index.js delete mode 100644 examples/NativeMessaging/ios/NativeMessaging.xcodeproj/project.pbxproj delete mode 100644 examples/NativeMessaging/ios/NativeMessaging.xcodeproj/xcshareddata/xcschemes/NativeMessaging.xcscheme delete mode 100644 examples/NativeMessaging/ios/NativeMessaging.xcworkspace/contents.xcworkspacedata delete mode 100644 examples/NativeMessaging/ios/NativeMessaging.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/AppDelegate.h delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/AppDelegate.m delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/AppIcon.appiconset/Contents.json delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/Images.xcassets/Contents.json delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/Info.plist delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/LaunchScreen.storyboard delete mode 100644 examples/NativeMessaging/ios/NativeMessaging/main.m delete mode 100644 examples/NativeMessaging/ios/NativeMessagingTests/Info.plist delete mode 100644 examples/NativeMessaging/ios/NativeMessagingTests/NativeMessagingTests.m delete mode 100644 examples/NativeMessaging/ios/Podfile delete mode 100644 examples/NativeMessaging/ios/Podfile.lock delete mode 100644 examples/NativeMessaging/metro.config.js delete mode 100644 examples/NativeMessaging/package.json delete mode 100644 examples/NativeMessaging/patches/@stream-io+flat-list-mvcp+0.10.1.patch delete mode 100644 examples/NativeMessaging/patches/react-native-haptic-feedback+1.11.0.patch delete mode 100644 examples/NativeMessaging/useStreamChatTheme.ts delete mode 100644 examples/NativeMessaging/yarn.lock 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 a2f5908281d070150700378b64a84c7db1f97aa1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3056 zcmV(P)KhZB4W`O-$6PEY7dL@435|%iVhscI7#HXTET` zzkBaFzt27A{C?*?2n!1>p(V70me4Z57os7_P3wngt7(|N?Oyh#`(O{OZ1{A4;H+Oi zbkJV-pnX%EV7$w+V1moMaYCgzJI-a^GQPsJHL=>Zb!M$&E7r9HyP>8`*Pg_->7CeN zOX|dqbE6DBJL=}Mqt2*1e1I>(L-HP&UhjA?q1x7zSXD}D&D-Om%sC#AMr*KVk>dy;pT>Dpn#K6-YX8)fL(Q8(04+g?ah97XT2i$m2u z-*XXz7%$`O#x&6Oolq?+sA+c; zdg7fXirTUG`+!=-QudtfOZR*6Z3~!#;X;oEv56*-B z&gIGE3os@3O)sFP?zf;Z#kt18-o>IeueS!=#X^8WfI@&mfI@)!F(BkYxSfC*Gb*AM zau9@B_4f3=m1I71l8mRD>8A(lNb6V#dCpSKW%TT@VIMvFvz!K$oN1v#E@%Fp3O_sQ zmbSM-`}i8WCzSyPl?NqS^NqOYg4+tXT52ItLoTA;4mfx3-lev-HadLiA}!)%PwV)f zumi|*v}_P;*hk9-c*ibZqBd_ixhLQA+Xr>akm~QJCpfoT!u5JA_l@4qgMRf+Bi(Gh zBOtYM<*PnDOA}ls-7YrTVWimdA{y^37Q#BV>2&NKUfl(9F9G}lZ{!-VfTnZh-}vANUA=kZz5}{^<2t=| z{D>%{4**GFekzA~Ja)m81w<3IaIXdft(FZDD2oTruW#SJ?{Iv&cKenn!x!z;LfueD zEgN@#Px>AgO$sc`OMv1T5S~rp@e3-U7LqvJvr%uyV7jUKDBZYor^n# zR8bDS*jTTdV4l8ug<>o_Wk~%F&~lzw`sQGMi5{!yoTBs|8;>L zD=nbWe5~W67Tx`B@_@apzLKH@q=Nnj$a1EoQ%5m|;3}WxR@U0q^=umZUcB}dz5n^8 zPRAi!1T)V8qs-eWs$?h4sVncF`)j&1`Rr+-4of)XCppcuoV#0EZ8^>0Z2LYZirw#G7=POO0U*?2*&a7V zn|Dx3WhqT{6j8J_PmD=@ItKmb-GlN>yH5eJe%-WR0D8jh1;m54AEe#}goz`fh*C%j zA@%m2wr3qZET9NLoVZ5wfGuR*)rV2cmQPWftN8L9hzEHxlofT@rc|PhXZ&SGk>mLC z97(xCGaSV+)DeysP_%tl@Oe<6k9|^VIM*mQ(IU5vme)80qz-aOT3T(VOxU><7R4#;RZfTQeI$^m&cw@}f=eBDYZ+b&N$LyX$Au8*J1b9WPC zk_wIhRHgu=f&&@Yxg-Xl1xEnl3xHOm1xE(NEy@oLx8xXme*uJ-7cg)a=lVq}gm3{! z0}fh^fyW*tAa%6Dcq0I5z(K2#0Ga*a*!mkF5#0&|BxSS`fXa(?^Be)lY0}Me1R$45 z6OI7HbFTOffV^;gfOt%b+SH$3e*q)_&;q0p$}uAcAiX>XkqU#c790SX&E2~lkOB_G zKJ`C9ki9?xz)+Cm2tYb{js(c8o9FleQsy}_Ad5d7F((TOP!GQbT(nFhx6IBlIHLQ zgXXeN84Yfl5^NsSQ!kRoGoVyhyQXsYTgXWy@*K>_h02S>)Io^59+E)h zGFV5n!hjqv%Oc>+V;J$A_ekQjz$f-;Uace07pQvY6}%aIZUZ}_m*>DHx|mL$gUlGo zpJtxJ-3l!SVB~J4l=zq>$T4VaQ7?R}!7V7tvO_bJ8`$|ImsvN@kpXGtISd6|N&r&B zkpY!Z%;q4z)rd81@12)8F>qUU_(dxjkWQYX4XAxEmH?G>4ruF!AX<2qpdqxJ3I!SaZj(bdjDpXdS%NK!YvET$}#ao zW-QD5;qF}ZN4;`6g&z16w|Qd=`#4hg+UF^02UgmQka=%|A!5CjRL86{{mwzf=~v{&!Uo zYhJ00Shva@yJ59^Qq~$b)+5%gl79Qv*Gl#YS+BO+RQrr$dmQX)o6o-P_wHC$#H%aa z5o>q~f8c=-2(k3lb!CqFQJ;;7+2h#B$V_anm}>Zr(v{I_-09@zzZ yco6bG9zMVq_|y~s4rIt6QD_M*p(V5oh~@tmE4?#%!pj)|0000T-ViIFIPY+_yk1-RB&z5bHD$YnPieqLK5EI`ThRCq%$YyeCI#k z>wI&j0Rb2DV5|p6T3Syaq)GU^8BR8(!9qaEe6w+TJxLZtBeQf z`>{w%?oW}WhJSMi-;YIE3P2FtzE8p;}`HCT>Lt1o3h65;M`4J@U(hJSYlTt_?Ucf5~AOFjBT-*WTiV_&id z?xIZPQ`>7M-B?*vptTsj)0XBk37V2zTSQ5&6`0#pVU4dg+Hj7pb;*Hq8nfP(P;0i% zZ7k>Q#cTGyguV?0<0^_L$;~g|Qqw58DUr~LB=oigZFOvHc|MCM(KB_4-l{U|t!kPu z{+2Mishq{vnwb2YD{vj{q`%Pz?~D4B&S9Jdt##WlwvtR2)d5RdqcIvrs!MY#BgDI# z+FHxTmgQp-UG66D4?!;I0$Csk<6&IL09jn+yWmHxUf)alPUi3jBIdLtG|Yhn?vga< zJQBnaQ=Z?I+FZj;ke@5f{TVVT$$CMK74HfIhE?eMQ#fvN2%FQ1PrC+PAcEu?B*`Ek zcMD{^pd?8HMV94_qC0g+B1Z0CE-pcWpK=hDdq`{6kCxxq^X`oAYOb3VU6%K=Tx;aG z*aW$1G~wsy!mL})tMisLXN<*g$Kv)zHl{2OA=?^BLb)Q^Vqgm?irrLM$ds;2n7gHt zCDfI8Y=i4)=cx_G!FU+g^_nE(Xu7tj&a&{ln46@U3)^aEf}FHHud~H%_0~Jv>X{Pm z+E&ljy!{$my1j|HYXdy;#&&l9YpovJ;5yoQYJ+hw9>!H{(^6+$(%!(HeR~&MP-UER zPR&hH$w*_)D3}#A2joDlamSP}n%Y3H@pNb1wE=G1TFH_~Lp-&?b+q%;2IF8njO(rq zQVx(bn#@hTaqZZ1V{T#&p)zL%!r8%|p|TJLgSztxmyQo|0P;eUU~a0y&4)u?eEeGZ z9M6iN2(zw9a(WoxvL%S*jx5!2$E`ACG}F|2_)UTkqb*jyXm{3{73tLMlU%IiPK(UR4}Uv87uZIacp(XTRUs?6D25qn)QV%Xe&LZ-4bUJM!ZXtnKhY#Ws)^axZkui_Z=7 zOlc@%Gj$nLul=cEH-leGY`0T)`IQzNUSo}amQtL)O>v* zNJH1}B2znb;t8tf4-S6iL2_WuMVr~! zwa+Are(1_>{zqfTcoYN)&#lg$AVibhUwnFA33`np7$V)-5~MQcS~aE|Ha>IxGu+iU z`5{4rdTNR`nUc;CL5tfPI63~BlehRcnJ!4ecxOkD-b&G%-JG+r+}RH~wwPQoxuR(I z-89hLhH@)Hs}fNDM1>DUEO%{C;roF6#Q7w~76179D?Y9}nIJFZhWtv`=QNbzNiUmk zDSV5#xXQtcn9 zM{aI;AO6EH6GJ4^Qk!^F?$-lTQe+9ENYIeS9}cAj>Ir`dLe`4~Dulck2#9{o}JJ8v+QRsAAp*}|A^ z1PxxbEKFxar-$a&mz95(E1mAEVp{l!eF9?^K43Ol`+3Xh5z`aC(r}oEBpJK~e>zRtQ4J3K*r1f79xFs>v z5yhl1PoYg~%s#*ga&W@K>*NW($n~au>D~{Rrf@Tg z^DN4&Bf0C`6J*kHg5nCZIsyU%2RaiZkklvEqTMo0tFeq7{pp8`8oAs7 z6~-A=MiytuV+rI2R*|N=%Y));j8>F)XBFn`Aua-)_GpV`#%pda&MxsalV15+%Oy#U zg!?Gu&m@yfCi8xHM>9*N8|p5TPNucv?3|1$aN$&X6&Ge#g}?H`)4ncN@1whNDHF7u z2vU*@9OcC-MZK}lJ-H5CC@og69P#Ielf`le^Om4BZ|}OK33~dC z9o-007j1SXiTo3P#6`YJ^T4tN;KHfgA=+Bc0h1?>NT@P?=}W;Z=U;!nqzTHQbbu37 zOawJK2$GYeHtTr7EIjL_BS8~lBKT^)+ba(OWBsQT=QR3Ka((u#*VvW=A35XWkJ#?R zpRksL`?_C~VJ9Vz?VlXr?cJgMlaJZX!yWW}pMZni(bBP>?f&c#+p2KwnKwy;D3V1{ zdcX-Pb`YfI=B5+oN?J5>?Ne>U!2oCNarQ&KW7D61$fu$`2FQEWo&*AF%68{fn%L<4 zOsDg%m|-bklj!%zjsYZr0y6BFY|dpfDvJ0R9Qkr&a*QG0F`u&Rh{8=gq(fuuAaWc8 zRmup;5F zR3altfgBJbCrF7LP7t+8-2#HL9pn&HMVoEnPLE@KqNA~~s+Ze0ilWm}ucD8EVHs;p z@@l_VDhtt@6q zmV7pb1RO&XaRT)NOe-&7x7C>07@CZLYyn0GZl-MhPBNddM0N}0jayB22swGh3C!m6~r;0uCdOJ6>+nYo*R9J7Pzo%#X_imc=P;u^O*#06g*l)^?9O^cwu z>?m{qW(CawISAnzIf^A@vr*J$(bj4fMWG!DVMK9umxeS;rF)rOmvZY8%sF7i3NLrQ zCMI5u5>e<&Y4tpb@?!%PGzlgm_c^Z7Y6cO6C?)qfuF)!vOkifE(aGmXko*nI3Yr5_ zB%dP>Y)esVRQrVbP5?CtAV%1ftbeAX zSO5O8m|H+>?Ag7NFznXY-Y8iI#>Xdz<)ojC6nCuqwTY9Hlxg=lc7i-4fdWA$x8y)$ z1cEAfv{E7mnX=ZTvo30>Vc{EJ_@UqAo91Co;@r;u7&viaAa=(LUNnDMq#?t$WP2mu zy5`rr8b||Z0+BS)Iiwj0lqg10xE8QkK#>Cp6zNdxLb-wi+CW5b7zH2+M4p3Cj%WpQ zvV+J2IY@kOFU_|NN}2O}n#&F1oX*)lDd-WJICcPhckHVB{_D}UMo!YA)`reITkCv& z+h-AyO1k3@ZEIrpHB)j~Z(*sF@TFpx2IVtytZ1!gf7rg2x94b*P|1@%EFX{|BMC&F zgHR4<48Z5Wte`o!m*m@iyK=>9%pqjT=xfgQua>)1| zzH!~jLG!rggat+qAIR%H=jrI#Ppid$J{TDkck^wb>Cbnli}}Mj8!tNfx{tXtDDVA6#7kU4k)m;JoI1>JM_ zq-flQ5dpn>kG~=9u{Kp+hETG^OCq!Y^l7JkwUJNUU7izHmd|F@nB0=X2`Ui?!twzb zGEx%cIl)h?ZV$NTnhB6KFgkkRg&@c7ldg>o!`sBcgi%9RE?paz`QmZ@sF(jo1bt^} zOO5xhg(FXLQ|z)6CE=`kWOCVJNJCs#Lx)8bDSWkN@122J_Z`gpPK4kwk4&%uxnuQ z^m`!#WD#Y$Wd7NSpiP4Y;lHtj;pJ#m@{GmdPp+;QnX&E&oUq!YlgQ%hIuM43b=cWO zKEo!Er{mwD8T1>Qs$i2XjF2i zo0yfpKQUwdThrD(TOIY_s`L@_<}B|w^!j*FThM0+#t0G?oR`l(S(2v&bXR}F6HLMU zhVvD4K!6s}uUD^L;|Sxgrb+kFs%8d8Ma>5A9p~uUO=yF*;%~xvAJiA`lls1pq5J%k z6&-yQ$_vP5`-Tr56ws&75Y&Q2;zD?CB_KpRHxzC9hKCR0889>jef)|@@$A?!QIu3r qa)363hF;Bq?>HxvTY6qhhx>m(`%O(!)s{N|0000xsEBz6iy~SX+W%nrKL2KH{`gFsDCOB6ZW0@Yj?g&st+$-t|2c4&NM7M5Tk(z5p1+IN@y}=N)4$Vmgo_?Y@Ck5u}3=}@K z);Ns<{X)3-we^O|gm)Oh1^>hg6g=|b7E-r?H6QeeKvv7{-kP9)eb76lZ>I5?WDjiX z7Qu}=I4t9`G435HO)Jpt^;4t zottB%?uUE#zt^RaO&$**I5GbJM-Nj&Z#XT#=iLsG7*JO@)I~kH1#tl@P}J@i#`XX! zEUc>l4^`@w2_Fsoa*|Guk5hF2XJq0TQ{QXsjnJ)~K{EG*sHQW(a<^vuQkM07vtNw= z{=^9J-YI<#TM>DTE6u^^Z5vsVZx{Lxr@$j8f2PsXr^)~M97)OdjJOe81=H#lTbl`!5}35~o;+uSbUHP+6L00V99ox@t5JT2~=-{-Zvti4(UkQKDs{%?4V4AV3L`G476;|CgCH%rI z;0kA=z$nkcwu1-wIX=yE5wwUO)D;dT0m~o7z(f`*<1B>zJhsG0hYGMgQ0h>ylQYP; zbY|ogjI;7_P6BwI^6ZstC}cL&6%I8~cYe1LP)2R}amKG>qavWEwL0HNzwt@3hu-i0 z>tX4$uXNRX_<>h#Q`kvWAs3Y+9)i~VyAb3%4t+;Ej~o)%J#d6}9XXtC10QpHH*X!(vYjmZ zlmm6A=sN)+Lnfb)wzL90u6B=liNgkPm2tWfvU)a0y=N2gqg_uRzguCqXO<0 zp@5n^hzkW&E&~|ZnlPAz)<%Cdh;IgaTGMjVcP{dLFnX>K+DJ zd?m)lN&&u@soMY!B-jeeZNHfQIu7I&9N?AgMkXKxIC+JQibV=}9;p)91_6sP0x=oO zd9T#KhN9M8uO4rCDa ze;J+@sfk?@C6ke`KmkokKLLvbpNHGP^1^^YoBV^rxnXe8nl%NfKS}ea`^9weO&eZ` zo3Nb?%LfcmGM4c%PpK;~v#XWF+!|RaTd$6126a6)WGQPmv0E@fm9;I@#QpU0rcGEJ zNS_DL26^sx!>ccJF}F){`A0VIvLan^$?MI%g|@ebIFlrG&W$4|8=~H%Xsb{gawm(u zEgD&|uQgc{a;4k6J|qjRZzat^hbRSXZwu7(c-+?ku6G1X0c*0%*CyUsXxlKf=%wfS z7A!7+`^?MrPvs?yo31D=ZCu!3UU`+dR^S>@R%-y+!b$RlnflhseNn10MV5M=0KfZ+ zl9DEH0jK5}{VOgmzKClJ7?+=AED&7I=*K$;ONIUM3nyT|P}|NXn@Qhn<7H$I*mKw1 axPAxe%7rDusX+w*00006jj zwslyNbxW4-gAj;v!J{u#G1>?8h`uw{1?o<0nB+tYjKOW@kQM}bUbgE7^CRD4K zgurXDRXWsX-Q$uVZ0o5KpKdOl5?!YGV|1Cict&~YiG*r%TU43m2Hf99&})mPEvepe z0_$L1e8*kL@h2~YPCajw6Kkw%Bh1Pp)6B|t06|1rR3xRYjBxjSEUmZk@7wX+2&-~! z!V&EdUw!o7hqZI=T4a)^N1D|a=2scW6oZU|Q=}_)gz4pu#43{muRW1cW2WC&m-ik? zskL0dHaVZ5X4PN*v4ZEAB9m;^6r-#eJH?TnU#SN&MO`Aj%)ybFYE+Pf8Vg^T3ybTl zu50EU=3Q60vA7xg@YQ$UKD-7(jf%}8gWS$_9%)wD1O2xB!_VxzcJdN!_qQ9j8#o^Kb$2+XTKxM8p>Ve{O8LcI(e2O zeg{tPSvIFaM+_Ivk&^FEk!WiV^;s?v8fmLglKG<7EO3ezShZ_0J-`(fM;C#i5~B@w zzx;4Hu{-SKq1{ftxbjc(dX3rj46zWzu02-kR>tAoFYDaylWMJ`>FO2QR%cfi+*^9A z54;@nFhVJEQ{88Q7n&mUvLn33icX`a355bQ=TDRS4Uud|cnpZ?a5X|cXgeBhYN7btgj zfrwP+iKdz4?L7PUDFA_HqCI~GMy`trF@g!KZ#+y6U%p5#-nm5{bUh>vhr^77p~ zq~UTK6@uhDVAQcL4g#8p-`vS4CnD9M_USvfi(M-;7nXjlk)~pr>zOI`{;$VXt;?VTNcCePv4 zgZm`^)VCx8{D=H2c!%Y*Sj3qbx z3Bcvv7qRAl|BGZCts{+>FZrE;#w(Yo2zD#>s3a*Bm!6{}vF_;i)6sl_+)pUj?b%BL!T1ELx|Q*Gi=7{Z_>n0I(uv>N^kh|~nJfab z-B6Q6i-x>YYa_42Hv&m>NNuPj31wOaHZ2`_8f~BtbXc@`9CZpHzaE@9sme%_D-HH! z_+C&VZ5tjE65?}X&u-D4AHRJ|7M{hR!}PYPpANP?7wnur`Z(&LFwzUmDz}m6%m#_` zN1ihq8f|zZ&zTL92M2b-hMpPyjp;j(qwgP9x)qI?EZx@<$g#>i7(MC}@*J1VGXm6J ztz1=RK@?%Qz^vmWNydd0K7oyrXw`TLb`z;fP6eV|NZ@9kKH zIyMqzZ9Y_)PZnC#UgW6&o7RiGXSCtSQvnrvJ07P9WCuE5TE27za*L6r1qX7pIDFiP znSaHYJF8sl^n0|3j!i{?fD%?fpQ8-}VX4%STy1t@8)G-8??Fy}j}~2_iJ79Y<9BW~ z!~)T{3Y|lwcVD5s4z^GP5M=~t`V?*Wng7gTvC9%p>ErZpM)pQVx57>AIcf1j4QFg^w>YYB%MypIj2syoXw9$K!N8%s=iPIw!LE-+6v6*Rm zvCqdN&kwI+@pEX0FTb&P)ujD9Td-sLBVV=A$;?RiFOROnT^LC^+PZR*u<3yl z7b%>viF-e48L=c`4Yhgb^U=+w7snP$R-gzx379%&q-0#fsMgvQlo>14~`1YOv{?^ z*^VYyiSJO8fE65P0FORgqSz#mi#9@40VO@TaPOT7pJq3WTK9*n;Niogu+4zte1FUa zyN7rIFbaQxeK{^RC3Iu@_J~ii&CvyWn^W}4wpexHwV9>GKO$zR3a&*L9&AgL=QfA$ z+G-YMq;1D{;N38`jTdN}Pw77sDCR|$2s+->;9gh-ObE_muwxq>sEpX)ywtgCHKIATY}p&%F4bRV>R9rYpeWbT(xnE7}?(HDXFgNDdC^@gUdK& zk=MolYT3>rpR*$Ell2!`c zjrIZftl&PUxlH2EgV+3VfQy&FjhL&5*Zg&R8xrSx?WgB?YuLO-JDaP3jr*I~qiywy z`-52AwB_6L#X ztms{{yRkRfQLbsb#Ov%`)acN(OCewI3Ex__xed17hg#g4c1blx?sK}UQg%PM@N;5d zsg{y6(|`H1Xfbz@5x{1688tu7TGkzFEBhOPDdFK(H_NQIFf|(>)ltFd!WdnkrY&mp z0y@5yU2;u1_enx%+U9tyY-LNWrd4^Wi?x<^r`QbaLBngWL`HzX@G550 zrdyNjhPTknrrJn#jT0WD0Z)WJRi&3FKJ#Sa&|883%QxM-?S%4niK{~k81<(c11sLk|!_7%s zH>c$`*nP-wA8Dx-K(HE~JG_@Yxxa;J+2yr+*iVlh;2Eiw?e`D1vu6*qY1+XTe8RVu z?RV%L|Mk!wO}j^S)p4H%?G37StD0Rx{_Y00%3a+V^SyOkfV@ZuFlEc;vR9r-D>cYU&plUkXL|M%1AYBQ3DI;;hF%_X@m*cTQAMZ4+FO74@AQB{A*_HtoXT@}l=8awaa7{RHC>07s?E%G{iSeRbh z?h#NM)bP`z`zdp5lij!N*df;4+sgz&U_JEr?N9#1{+UG3^11oQUOvU4W%tD1Cie3; z4zcz0SIrK-PG0(mp9gTYr(4ngx;ieH{NLq{* z;Pd=vS6KZYPV?DLbo^)~2dTpiKVBOh?|v2XNA)li)4V6B6PA!iq#XV5eO{{vL%OmU z0z3ZE2kcEkZ`kK(g^#s)#&#Zn5zw!R93cW^4+g0D=ydf&j4o_ti<@2WbzC>{(QhCL z(=%Zb;Ax8U=sdec9pkk|cW)1Ko;gK{-575HsDZ!w@WOQ^Up)GGorc38cGxe<$8O!6 zmQ`=@;TG{FjWq(s0eBn5I~vVgoE}un8+#YuR$Asq?lobvVAO-`SBs3!&;QEKT>gZ0T)jG^Foo~J2YkV&mi-axlvC}-(J4S2 z;opuO)+FIV#}&4;wwisb>{XU+FJ~tyK7UaG@ZD^C1^brazu7Xkh5Od}&P)GufW=u# zMxOwfWJ3a^MZha>9OmQ)@!Y;v*4@+dg~s~NQ;q@hV~l>lw`P)d`4XF9rE?aEFe(JV zI>11}Ny%^CkO=VN>wCV?P!-?VdT3vWe4zBLV*?6XPqsC%n93bQXvydh0Mo+tXHO4^ zxQ{x0?CG{fmToCyYny7>*-tNh;Sh9=THLzkS~lBiV9)IKa^C~_p8MVZWAUb)Btjt< zVZ;l7?_KnLHelj>)M1|Q_%pk5b?Bod_&86o-#36xIEag%b+8JqlDy@B^*YS*1; zGYT`@5nPgt)S^6Ap@b160C4d9do0iE;wYdn_Tr(vY{MS!ja!t*Z7G=Vz-=j5Z⁣ zwiG+x#%j}{0gU~J8;<|!B1@-XaB@{KORFwrYg_8rOv({b0EO#DbeQRm;B6_9=mXGf z-x|VL{zd`)#@yN}HkCSJbjbNlE|zL3Wm9Q8HY`sV)}3%pgN>cL^67{Z;PPL(*wT8N zUjXU{@|*hvm}({wsAC=x0^ok0%UAz0;sogW{B!nDqk|JJ5x~4NfTDgP49^zeu`csl?5mY@JdQdISc zFs!E{^grmkLnUk9 zny~m)1vws@5BFI<-0Tuo2JWX(0v`W|t(wg;s--L47WTvTMz-8l#TL^=OJNRS2?_Qj z3AKT+gvbyBi#H*-tJ%tWD|>EV3wy|8qxfzS!5RW;Jpl5*zo&^UBU=fG#2}UvRyNkK zA06Dy9;K1ca@r2T>yThYgI!ont$(G{6q#2QT+00r_x0(b)gsE`lBB?2gr55gq^D3Fi&p%E(p9>U%bv zkg1Jco(RbyTX7FDHOnl7-O@ zI$AaIl?9NJKPm(WiBP`1-#CB1QzU>&hKm)fpa5DKE{2$X0hGz-0uZ?cyTk(YC!Y&| zL=1VrNERSA5NA2jq7FACfX4JfPyj5XXl1yv0>~s;eF7L2$>&oMqeTFT2m$y7FlkON z_yurD1yIOvA;5C6016pyxBznGUt0kJ&k5r#;&>Jow`r)sp9R~PmK~lz$3xH%LT*1U zJdOyABZ3!FvNoR*vN$5ykHS8f`jA4zV+|L}i1C4`B2c{R0;UdYxaU|H)2avz@ z=mEYc|2S<+(B2Tj+FkX+2D+yFI!k9lWMA61DJ{)e;lum$(;O87?vGJJe!KtK04+N_ zI*P~t@dUb>9Xh{dbyl{-ZQ(UMgz7$|QfL5XSPkskt^NgctYC#;4WcZB1@%@wy@2t3 z2z0DI7&%b$*Aw~abe?GxE`ez@+6hOh-6*8fHRV{1os$EL@}uUZeG4h1&Be`98q*7j z=3-v+lhIjfWVo12!<>%V^a6lTgW3+_#W6n|p*~==zOH7z$0{LSZk(Tpd7EaD04hnA zL;#fxS0aD{`5^&D`}>0Uq?byDD-l2=!wm_bLcUl4gc(% za1p|itVANvFF>hghAS07Im1;IK;|b*W)}VDyI;BIp2=K*yu2a)j?B|f<44NI$NbmJ z#dE0>jI$fMr&@>4kN8MLFb4&2O9fEKaQg%(QO$4_1rVQywG^CmBLh#}_7gKW3vd?| z2?1^&KWq8}8I^_S0|)MowU_pw$q@nl@Nkn$z>BQq_KA^9yaR`(R3u{{Ig;cwt z@AJ^{ODQCm^neroM9nKNUAXi9RCK`OsP_LuR0PUR(YZCCX5dNF6VzcoK&=b^r`W?ltt|*F zpkoae%ZT{C1h~EcFui~b7fF`vb<<~j_VquuUA$}QqIKYELPp#;{u?q8Dz}WAG-(3; zjrm$i%7UbyZMM(Y{>!uJ#vNB?R~B{6Htp=>e*<{fQQ5W7V(1coCWlOON!MzZxhum| ztZBQpGR z;~#ur^&PockKdV{Q6R>o`Pl{0x!DEbpZ7y9Y;*ZvE!*gU`V1W3znva{f=?WO5I&>B z&hw6}tjECtaghm5z|C#%M;Yf_*pI^};h}Vl=^r9EN=tVDj86D;C$jIJ?K7VP+00000NkvXXu0mjf D5i!M* 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 459ca609d3ae0d3943ab44cdc27feef9256dc6d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7098 zcmV;r8%5-aP)U(QdAI7f)tS=AhH53iU?Q%B}x&gA$2B`o|*LCD1jhW zSQpS0{*?u3iXtkY?&2<)$@#zc%$?qDlF1T~d7k&lWaiv^&wbx>zVm(GIrof<%iY)A zm%|rhEg~Z$Te<*wd9Cb1SB{RkOI$-=MBtc%k*xtvYC~Uito}R@3fRUqJvco z|Bt2r9pSOcJocAEd)UN^Tz-82GUZlqsU;wb|2Q_1!4Rms&HO1Xyquft~#6lJoR z`$|}VSy@{k6U652FJ~bnD9(X%>CS6Wp6U>sn;f}te}%WL`rg)qE4Q=4OOhk^@ykw( ziKr^LHnAd4M?#&SQhw8zaC05q#Mc66K^mxY!dZ=W+#Bq1B}cQ6Y8FWd(n>#%{8Di_8$CHibtvP z-x#-g;~Q?y0vJA*8TW>ZxF?fAy1DuFy7%O1ylLF(t=ah7LjZ$=p!;8(ZLjXAhwEkCR{wF`L=hwm>|vLK2=gR&KM1ZEG9R~53yNCZdabQoQ%VsolX zS#WlesPcpJ)7XLo6>Ly$im38oxyiizP&&>***e@KqUk3q3y+LQN^-v?ZmO>9O{Oq@ z{{He$*Z=Kf_FPR>El3iB*FULYFMnLa#Fl^l&|bFg$Omlh{xVVJ7uHm=4WE6)NflH6 z=>z4w{GV&8#MNnEY3*B7pXU!$9v-tZvdjO}9O=9r{3Wxq2QB}(n%%YI$)pS~NEd}U z)n#nv-V)K}kz9M0$hogDLsa<(OS0Hf5^WUKO-%WbR1W1ID$NpAegxHH;em?U$Eyn1 zU{&J2@WqSUn0tav=jR&&taR9XbV+Izb*PwFn|?cv0mksBdOWeGxNb~oR;`~>#w3bp zrOrEQ+BiW_*f&GARyW|nE}~oh0R>>AOH^>NHNKe%%sXLgWRu1Sy3yW0Q#L{8Y6=3d zKd=By=Nb8?#W6|LrpZm>8Ro)`@cLmU;D`d64nKT~6Z!aLOS{m`@oYwD`9yily@}%yr0A>P!6O4G|ImNbBzI`LJ0@=TfLt^f`M07vw_PvXvN{nx%4 zD8vS>8*2N}`lD>M{`v?2!nYnf%+`GRK3`_i+yq#1a1Yx~_1o~-$2@{=r~q11r0oR* zqBhFFVZFx!U0!2CcItqLs)C;|hZ|9zt3k^(2g32!KB-|(RhKbq-vh|uT>jT@tX8dN zH`TT5iytrZT#&8u=9qt=oV`NjC)2gWl%KJ;n63WwAe%-)iz&bK{k`lTSAP`hr)H$Q`Yq8-A4PBBuP*-G#hSKrnmduy6}G zrc+mcVrrxM0WZ__Y#*1$mVa2y=2I`TQ%3Vhk&=y!-?<4~iq8`XxeRG!q?@l&cG8;X zQ(qH=@6{T$$qk~l?Z0@I4HGeTG?fWL67KN#-&&CWpW0fUm}{sBGUm)Xe#=*#W{h_i zohQ=S{=n3jDc1b{h6oTy=gI!(N%ni~O$!nBUig}9u1b^uI8SJ9GS7L#s!j;Xy*CO>N(o6z){ND5WTew%1lr? znp&*SAdJb5{L}y7q#NHbY;N_1vn!a^3TGRzCKjw?i_%$0d2%AR73CwHf z`h4QFmE-7G=psYnw)B!_Cw^{=!UNZeR{(s47|V$`3;-*gneX=;O+eN@+Efd_Zt=@H3T@v&o^%H z7QgDF8g>X~$4t9pv35G{a_8Io>#>uGRHV{2PSk#Ea~^V8!n@9C)ZH#87~ z#{~PUaRR~4K*m4*PI16)rvzdaP|7sE8SyMQYI6!t(%JNebR%?lc$={$s?VBI0Qk!A zvrE4|#asTZA|5tB{>!7BcxOezR?QIo4U_LU?&9Im-liGSc|TrJ>;1=;W?gG)0pQaw z|6o7&I&PH!*Z=c7pNPkp)1(4W`9Z01*QKv44FkvF^2Kdz3gDNpV=A6R;Q}~V-_sZY zB9DB)F8%iFEjK?Gf4$Cwu_hA$98&pkrJM!7{l+}osR_aU2PEx!1CRCKsS`0v$LlKq z{Pg#ZeoBMv@6BcmK$-*|S9nv50or*2&EV`L7PfW$2J7R1!9Q(1SSe42eSWZ5sYU?g z2v{_QB^^jfh$)L?+|M`u-E7D=Hb?7@9O89!bRUSI7uD?Mxh63j5!4e(v)Kc&TUEqy z8;f`#(hwrIeW);FA0CK%YHz6;(WfJz^<&W#y0N3O2&Qh_yxHu?*8z1y9Ua}rECL!5 z7L1AEXx83h^}+)cY*Ko{`^0g3GtTuMP>b$kq;Aqo+2d&+48mc#DP;Sv z*UL^nR*K7J968xR0_eTaZ`N`u_c#9bFUjTj-}0+_57(gtEJT|7PA12W=2Z>#_a z&Wg@_b=$d~wonN3h~?)gS`qxx<4J&`dI*rH9!mTSiQj(0rF-{YoNJRnOqd5IbP7p} ztDaPu$A;#osxf=z2zVe4>tpa(knS_Mp67nKcE<>Cj$G2orP(Z$Oc4;4DPwbXYZsS^ z;b>59s(LgYmx|tkRD?U{+9VZ$T}{S}L6>lQNR^a|&5joAFXtOrI07Do!vk(e$mu@Y zNdN!djB`Hq1*T8mrC@S)MLwZ`&8aM8YYtVj7i)IY{g&D1sJaY`3e=1DSFnjO+jEHH zj+|@r$$4RtpuJ!8=C`n5X;5BjU2slP9VV&m0gr+{O(I}9pYF32AMU?n$k$=x;X^E# zOb-x}p1_`@IOXAj3>HFxnmvBV9M^^9CfD7UlfuH*y^aOD?X6D82p_r*c>DF)m=9>o zgv_SDeSF6WkoVOI<_mX};FlW9rk3WgQP|vr-eVo8!wH!TiX)aiw+I|dBWJX=H6zxx z_tSI2$ChOM+?XlJwEz3!juYU6Z_b+vP-Y|m1!|ahw>Kpjrii-M_wmO@f@7;aK(I;p zqWgn+X^onc-*f)V9Vfu?AHLHHK!p2|M`R&@4H0x4hD5#l1##Plb8KsgqGZ{`d+1Ns zQ7N(V#t49wYIm9drzw`;WSa|+W+VW8Zbbx*Z+aXHSoa!c!@3F_yVww58NPH2->~Ls z2++`lSrKF(rBZLZ5_ts6_LbZG-W-3fDq^qI>|rzbc@21?)H>!?7O*!D?dKlL z6J@yulp7;Yk6Bdytq*J1JaR1!pXZz4aXQ{qfLu0;TyPWebr3|*EzCk5%ImpjUI4cP z7A$bJvo4(n2km-2JTfRKBjI9$mnJG@)LjjE9dnG&O=S;fC)@nq9K&eUHAL%yAPX7OFuD$pb_H9nhd{iE0OiI4#F-);A|&YT z|A3tvFLfR`5NYUkE?Rfr&PyUeFX-VHzcss2i*w06vn4{k1R%1_1+Ygx2oFt*HwfT> zd=PFdfFtrP1+YRs0AVr{YVp4Bnw2HQX-|P$M^9&P7pY6XSC-8;O2Ia4c{=t{NRD=z z0DeYUO3n;p%k zNEmBntbNac&5o#&fkY1QSYA4tKqBb=w~c6yktzjyk_Po)A|?nn8>HdA31amaOf7jX z2qillM8t8V#qv5>19Cg_X`mlU*O5|C#X-kfAXAHAD*q%6+z%IK(*H6olm-N4%Ic)5 zL`?wQgXfD&qQRxWskoO^Ylb>`jelq;*~ZIwKw|#BQjOSLkgc2uy7|oFEVhC?pcnU+ z^7qz}Z2%F!WOp%JO3y*&_7t;uRfU>)drR1q)c7lX?;A1-TuLTR zyr(`7O19`eW{ev;L%`;BvOzh?m|)Rh?W8&I$KVvUTo?@f@K!du&vf=o6kKb?hA z%e6$T0jWS7doVkN%^_k3QOksfV?aC$Ge$a)z(!C@UVs*@qzDw*OFd*JfX#>5LCXjE z_vfUrLF7D`K$U2Ld#OCnh9U!;r7%GlKo$e__Il-oba06ER{H&f#J&W@x^^5j;y$0` zs2`m6pf+{UiDb{Mjsb$rH+MCM6G_wX92so96`ODFYKD>!Xz^0y@U7Tc1uON4L<>2f-oPe%FRPEZ@S#-yd7Md-i?v z)$Kgtq;%4g@>Kap3Nl2I&jnCIfGmRmcF4CXfF1H}3SfhLg8=!a0ucGaUk&c3*Ykgl z2X_L84cs+FD#cjf-nMJkVDH%XzOoh5!X-Q$K5VZx-hGF7MQ=XKBjhZZQ@1Sh zO^vY`WQ`zi21z-+01na%<^niMFIWm-n|!?hm4X2HEHkba4YS|+HRoIR=`#Xck@PFXaPjnP z=hC4A*0lumS+gpK=TUN!G;{WqICbMz-V=-lTP^@a#C|E!qH;T00SZh7u#?+?08g0< zV1s%-U-`T@8wGh!3pO^`zUIY{nAED7kBqg!qi&GfOp>57f2PGTV19m z0qU@1PYkf%4z_%;Sq4IY94rS+ie~pwT@O3+tg?#k_=5PIk6tV@< zwLoqM0wBVLkI#`|1w=eYMnc^aRR!t?lnUng>WekR#X!!9mYXL3g^gC7`)S7mmo{y} z9*N!d$s32Nu{cZp#O|UxEZK7eY<7hGcI=lc;HrSVL|HA|S$rhhu_DBT&l+`75d`Sj3LaM~H)P zZuk2&jor6yipafklSsPL-vMo?0yAYXpH3=LveBhkno-3{4VLWL16I-@!RM$Po>&}} zm&PX3-$i>$*yx-THZmvK2q`8Qm7B`(NMR;>VSgoGw}W|G6Xd6v04Zf;HIZ0DZU?@- z39vPe0N8w(9kl$2?eG4T?tLgY5V&aFl%~g;2)aSpi!dl?{hDgsz|3<-M(gPtwP_!n z2aB4tV?d0k+>X`+(HMYfK@qtfDK|mIJeg+A<_i-n+5wkrexFs#V0N&~+{+qJ(wggC*52o2daaRwcu7r;S!!KwguB3!Ei7?IEY ze4V$m{8B4Q^(VK4~Ea!V@@}Gs0HGbR5 zy~WI*21hZuoiK`=O$2a|Uce-Zi2%A*pB|?{gv)n8+_B+i&u8Ys)ePY+UwhBDlzbC& z+N00*-?a8DTC26*(3pKgeMO`fOau^-+c6Qqq}3-dpTsEEH}ds! zT^}8XAWO>c5%+qF%#M8#x_0gC+N%q8h6-%w;qidS%gai<T)vpfYuCHXRx6O-TbC|fnj87X zBESvn(9XlXFMj6%{&BaNQ&;xixaKP)+jJ|%u&?HXvYficY}{%hf?0rNDS-X-0_Jcr zjfj~n?T;~RL#sd4ZED2Jf{*Vj+*1eP9-H+~8X^#Jb?HHabLY)EH{QD@Yh-$M`XXt@3_f-L8nBo~*C?L4~n6M92PCuzX=KFgM*j!B66er$F! z+*M(Wkk`UI@uhrL#IUz-C{K@@xtd&n-PQz%kc}7YeE{{&$?}-*yW$eG*E4jp>B_U!2`2oZuvvitN& z%RN>tE$+Yhtqb1q+xQHbp=W4uKSiIj_LZppR0=hEiVj>P0^Vcr^hu2+#Hqum+}zzo znqZ|M4oD|qd=y&JX-qob`=uqt?o%FJPIVY2w0M7BH>#sx>s#OM#9JF1(3LxMAe-vi ztJeU*G)aksP`5sP9_%|~>Pp{NmMMcay>&D+cI%H}$uSx{Su(yz$)2e$*pS%*+!Zo>DNp(P7 zI%w^D2ceEFUGCtQPKfsKr`x%^dy;Rh>lMKuhA^btz=071W=vV`_xz&m;cvd0`|!3+ z2M6uga6CNvy)%Pjw_X}5+xf###jc+?=>6chZI{BMH=haH^7ipT>(?9{weF3apk<4; z_nZFsi`@oFBXCZE^k9B1x+cH2)~9d(MnfEm;GJxG*IB zU@ly{cOTWk*K1ryX+T7m!6A>VwB-*qfH;b>`AUP19lLSA9HbfppW!={L0K)??SymOCA^V>=tOBLn2c5e ksm9QK-qMKdW>5J419kFO%DdQj-T(jq07*qoM6N<$f+5oB`~Uy| 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 8ca12fe024be86e868d14e91120a6902f8e88ac6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6464 zcma)BcR1WZxBl%e)~?{d=GL+&^aKnR?F5^S)H60AiZ4#Zw z<{%@_?XtN*4^Ysr4x}4T^65=zoh0oG>c$Zd1_pX6`i0v}uO|-eB%Q>N^ZQB&#m?tGlYwAcTcjWKhWpN*8Y^z}bpUe!vvcHEUBJgNGK%eQ7S zhw2AoGgwo(_hfBFVRxjN`6%=xzloqs)mKWPrm-faQ&#&tk^eX$WPcm-MNC>-{;_L% z0Jg#L7aw?C*LB0?_s+&330gN5n#G}+dQKW6E7x7oah`krn8p`}BEYImc@?)2KR>sX{@J2`9_`;EMqVM;E7 zM^Nq2M2@Ar`m389gX&t}L90)~SGI8us3tMfYX5};G>SN0A%5fOQLG#PPFJYkJHb1AEB+-$fL!Bd}q*2UB9O6tebS&4I)AHoUFS6a0* zc!_!c#7&?E>%TorPH_y|o9nwb*llir-x$3!^g6R>>Q>K7ACvf%;U5oX>e#-@UpPw1ttpskGPCiy-8# z9;&H8tgeknVpz>p*#TzNZQ1iL9rQenM3(5?rr(4U^UU z#ZlsmgBM9j5@V-B83P3|EhsyhgQ77EsG%NO5A6iB2H; zZ1qN35-DS^?&>n1IF?bU|LVIJ-)a3%TDI*m*gMi7SbayJG$BfYU*G+{~waS#I(h-%@?Js8EohlFK)L6r2&g ztcc$v%L)dK+Xr=`-?FuvAc@{QvVYC$Y>1$RA%NKFcE$38WkS6#MRtHdCdDG)L5@99 zmOB8Tk&uN4!2SZ@A&K>I#Y$pW5tKSmDDM|=;^itso2AsMUGb8M-UB;=iAQLVffx9~ z>9>|ibz#eT>CNXD*NxH55}uwlew*<*!HbMj&m@)MJpB3+`0S~CS*}j%xv0#&!t?KV zvzMowAuAt0aiRnsJX@ELz=6evG5`vT22QVgQ8`R8ZRMFz4b*L1Iea$C{}L-`I@ADV z>6E7u@2*aes?Tbya7q(2B@(_EQ`i{|e`sX<`|EStW0J4wXXu{=AL)Yc~qrWr;0$Pv5 zv>|&Z)9;X%pA)*;27gocc66voVg~qDgTjj+(U9|$GL0^^aT_|nB9A30Cit)kb|vD4 zf)DnEpLD$vFe;2q6HeCdJHy;zdy!J*G$c>?H)mhj)nUnqVZgsd$B3_otq0SLKK#6~ zYesV8{6fs%g73iiThOV6vBCG|%N@T5`sPyJC=Khz2BFm;>TDQsy`9-F*ndRcrY(oR zi`Yl&RS)~S{(6bu*x$_R`!T^Rb*kz$y74i|w!v9dWZch7*u=!*tHWu{H)+?o_5R?j zC3fh6nh%xP1o2@)nCKrOt45=`RDWzlx4E4Vyt~xJp=x(& z&nexdTA1T z8wlsklpvKX6UmIAoqD2{y!U7sJ1pb*!$$7-$WqT`P85GQnY<9f-V#A{D0qB4s( zM}v7W^xaEsAKOKHwfqZjhp--BnCdoIWKR-`Fzd|6nA|kgToLF%fZtoODEB96Wo9H1 z0Sdw%@}akuaT$>wLSecayqMj-91_>92B%+(=`^b?eO-^^iU_rUI1HudU9|kEC)+4kO$7RH+ld1twCmYZY9TvW^5l;Z}B8= z896yWiZZB`qqS&OG0XwC_$cobL16lrJ*2c3&fKbrp9 z%tlJvW_MO`=d4M{%mK#3Z4&l;9YJ1vr(ouTCy`gN^l^_A9NgpWRb8LrAX%Q#*Cmp5 zIwyGcPL%eUjz^{sVkq*vzFy#ta>EToiootr5A5XFi*hI$n2k0Y^t86pm2&3+F0p%mt`GZnV`T}#q!8*EbdK85^V zKmz&wU&?nse8nxapPCARIu14E@L92H30#omJIM-srk(t?deU6h*}Dy7Er~G6)^t#c>Md`*iRFxBLNTD%xZ?*ZX(Eyk@A7-?9%^6Mz+0mZ94+f?$Bjyu# z13t~Gc4k*z$MR-EkcUxB z&qf)13zOI)&aC{oO!Rc0f=E+Fz%3Dh2 zV#s?W#u7wIkKwpC1JpsDx>w@|$yx6)8IuolPXc&F`pg23fo3ut{Vi&9S5ax7tA`Jt zwy+x6 zmAjv170vr2Nqvw^f>!9m2c`;ERAPyYv%geDGY^+1Hu9_Ds%%_dgo`-0nQe|jj?3cV zBs&>A3u~RhH@@aaaJYOi^)d;Q9|^Bvl4*H#aNHs#`I7&5osKp$o#b8(AHEYaGGd5R zbl*pMVCA?^kz#h)fPX{it?;>NPXZ%jYUL7&`7ct>ud@Fafg?^dudINo z(V}0Pzk*<5wlI*`V}S9|VcGUJ>E(Z~SJK!qm!rRVg_iEo}kx(ZP@xbA^ zv5C}~Frbyc79Gf|LEN9bkut~oE_ts|A0;FoQd}xjkal?FrynlE$0~+WvV3FqT7hl& zCex`(-&TN>>hn=Z-GiZcT6`@s4Q={XbGonu=`?IO(DL;a7q4GJT*LFu=i-0%HoxX6 zcE6uWDcb4U{c-Lv)sS5Laat=&7<4^Nx-dI0yhCBphb{EUIOPF!x-K*8?4mhe)ql&=>t&BpmQ+Cro zU}jKu9ZVtI-zmH~&_GitE94R}uPo|TH7Avb>6`bfsw(H5#6i@1eAjnbJ6Jp2`sUyA zT6=~iK`oPTyOJ@B7;4>Mu_)Y5CU8VBR&hfdao**flRo6k_^jd9DVW1T%H662;=ha4 z|GqT_1efxomD2pViCVn>W{AJnZU z@(<&n5>30Xt6qP&C^{bC7HPAF@InDSS1jw5!M7p#vbz_0rOjeBFXm4vp#JW99$+91 zK~k`ZV)&&?=i!OIUJn61H*6??S4i2(>@e9c&~OD1RmDDRjY>mIh*T2~R)d#BYSQSV z<518JITbPK5V-O@m<{jeB0FU^j)M2SbBZhP~{vU%3pN+$M zPFjBIaP?dZdrsD*W5MU`i(Z*;vz&KFc$t|S+`C4<^rOY}L-{km@JPgFI%(Qv?H70{ zP9(GR?QE@2xF!jYE#Jrg{OFtw-!-QSAzzixxGASD;*4GzC9BVbY?)PI#oTH5pQvQJ z4(F%a)-AZ0-&-nz;u$aI*h?4q{mtLHo|Jr5*Lkb{dq_w7;*k-zS^tB-&6zy)_}3%5 z#YH742K~EFB(D`Owc*G|eAtF8K$%DHPrG6svzwbQ@<*;KKD^7`bN~5l%&9~Cbi+P| zQXpl;B@D$-in1g8#<%8;7>E4^pKZ8HRr5AdFu%WEWS)2{ojl|(sLh*GTQywaP()C+ zROOx}G2gr+d;pnbYrt(o>mKCgTM;v)c&`#B0IRr8zUJ*L*P}3@{DzfGART_iQo86R zHn{{%AN^=k;uXF7W4>PgVJM5fpitM`f*h9HOPKY2bTw;d_LcTZZU`(pS?h-dbYI%) zn5N|ig{SC0=wK-w(;;O~Bvz+ik;qp}m8&Qd3L?DdCPqZjy*Dme{|~nQ@oE+@SHf-` zDitu;{#0o+xpG%1N-X}T*Bu)Qg_#35Qtg69;bL(Rfw*LuJ7D5YzR7+LKM(f02I`7C zf?egH(4|Ze+r{VKB|xI%+fGVO?Lj(9psR4H0+jOcad-z!HvLVn2`Hu~b(*nIL+m9I zyUu|_)!0IKHTa4$J7h7LOV!SAp~5}f5M;S@2NAbfSnnITK3_mZ*(^b(;k-_z9a0&^ zD9wz~H~yQr==~xFtiM8@xM$))wCt^b{h%59^VMn|7>SqD3FSPPD;X>Z*TpI-)>p}4 zl9J3_o=A{D4@0OSL{z}-3t}KIP9aZAfIKBMxM9@w>5I+pAQ-f%v=?5 z&Xyg1ftNTz9SDl#6_T1x4b)vosG(9 ze*G{-J=_M#B!k3^sHOas?)yh=l79yE>hAtVo}h~T)f&PmUwfHd^GIgA$#c{9M_K@c zWbZ@sJ{%JeF!chy?#Y6l_884Q)}?y|vx&R~qZDlG#Q$pU2W+U4AQ+gt-ViZ@8*)W| zN}wXeW~TTA#eqe)(vdbZm(Pm3j;>#thsjkQ;WH#a1e>C?-z7B%5go0khC;qQfrA-~ z$^9-bBZi+WMhAW0%y*4FlNC%SvM%a(`BE ze-4>w7)wg(sKN@T-nTl^G~+e{lyeTG(dfoz3U!LKf{rmR=<}+ih`q1*(OB8oS#B&> z;Mf*_o&W5*=YXfgFP}B@p)|WJA7X^OhD8)dnP)jzA@E=&=Ci7QzO`+_Vzsr zPWpZ3Z1>W?dNv6)H}>_%l*Di^aMXFax2)v1ZCxi4OJKTI<)yK_R>n#>Sv$LTRI8cB ziL<^H!Q&(ny#h19ximj|=3WygbFQ9j_4d8yE5}Rvb>DpH^e#I;g6}sM7nZnLmyB3# z!UenLG)cb%%--*pozd3}aX#-Nmu5ptKcp>-zcwRx9se(_2ZQsmWHU!Rgj3QRPn3UF z_sqgJ&Eb=kv+m0$9uW~j-aZ0Hq#b_2f^rS*bL}stW91HXNt0JDK~q-%62AW}++%IT zk!ZO&)BjYf)_bpTye9UB=w_-2M{YgE#ii%`l+(PHe_QjW@$o^e)A&KoW2)+!I9Ohw zDB1e=ELr`L3zwGjsfma_2>Th#A0!7;_??{~*jzt2*T6O%e3V)-7*TMGh!k050cAi2C?f}r2CHy&b8kPa2#6aI1wtOBBfiCCj?OjhctJT zF|t;&c+_-i=lhK}pNiu>8*ZFrt0rJp={`H182b$`Zb>SI(z!@Hq@<+#JSpVAzA3oc z@yEcV|MbQ+i)`%|)klTCzCj&qoC0c7g6FFgsUhcaDowSG{A=DV19LHK*M7TK?HV;a zAAvOV<(8UlC>jP4XE>(OS{6DfL B0*L?s 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 8e19b410a1b15ff180f3dacac19395fe3046cdec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10676 zcmV;lDNELgP)um}xpNhCM7m0FQ}4}N1loz9~lvx)@N$zJd<6*u{W9aHJztU)8d8y;?3WdPz&A7QJeFUv+{E$_OFb457DPov zKYK{O^DFs{ApSuA{FLNz6?vik@>8e5x#1eBfU?k4&SP;lt`%BTxnkw{sDSls^$yvr#7NA*&s?gZVd_>Rv*NEb*6Zkcn zTpQm5+>7kJN$=MTQ_~#;5b!%>j&UU=HX-HtFNaj*ZO3v3%R?+kD&@Hn5iL5pzkc<} z!}Vjz^MoN~xma>UAg`3?HmDQH_r$-+6~29-ynfB8BlXkvm55}{k7TadH<~V$bhW)OZXK@1)CrIKcRnSY`tG*oX}4YC&HgKz~^u7 zD?#%P?L~p~dt3#y(89y}P;ij|-Z#KC;98PvlJCjf6TQbsznsL8#78n~B_kaQl}nsm zLHr7z%-FAGd=-!e?C{q62x5i4g4hNuh)LeqTa4ynfC4h(k*e>okrBlLv;YG%yf8!6 zcN)a^5>rp^4L+myO70z(0m`D}$C(eqfV1GpzM+%$6s6$?xF>~%Gzx|$BUZ$=;f)B8 zoQUrc!zB4kT!wqSvJ=ywY-W)3364w!`U>J+49ZE`H~+{!gaM)zFV!?!H+)k8BnOj3 zGvU93auN}g?X^8c`+PFv|EH=R%m)iUN7gssWyTD~uv7prl1iRfRaCFeJUuA@$(p&K z?D+cmhxf`n9B~!?S#d*TeLb^(q~VYS$3KhjfwfMWtZx&PlTZ(i@5HJ?of_Q)0YX99 z35b?W>?=vlb6gtK1ydcF4<@aH|Hgj8r?~QNOPx(YoKT^Xn=?Q%=1uA&-G(}mXdtsT zQuKACS|@G@uBW(SY(cH%% zq+xr%bpGqOGHyw3=8K7;J&hp^g1UsyG zYT24BGeGQukP?&TlOBE2H$2oH>U#E>GtI-fmc)17uc`7FRxJ3A!c%ADN^Z^oi6tYp zjzE+a{r&jt6z^scbd(feWPVEE!lV1I4lfdLhQ|yLdx&1IEV%l1erB&H8X}3=8lIcc zCNPUis-KRbCC z20@WYl&vVEZo!fLXxXs?{|<|Z=>0^-iX;y6{DT$lSo8b|@FZM3U$+W37(A_9<)fnq zP~11?(AKlHI-Lh(`?-@S?(1{t16bc7ESX->9twFP@t8_XK$XxuSFF#R(g7H(U%XvWa zm}J>%4-suYL=gX7-_MsjD27o?I!G888fxV$koLCfOv+Da&OVTG*@(aC9lz_e>*UGS zrX6f-45hd55ya-p_O{FbHEG%Ee9~i(H-B3RZkv`0ZDn$!>MigMZX06&y3RSk-WnL-{cM1 z1TZr|rc*Xaf|_^y&YLc4KK3<@aWfge2jARbRRg1DfJ~%pV9L_@$UADw3EXC_n%p0v zQO*{=88K@W{T?$wCR#S!M!e+R$aDL~EzovN7pbOBvrk&&ASS=Z43No|jrc>}aXXO5 zrd1<|Qypq-h#J*iORN@8YRc&`17u=lqo&L&YV%p#hL%P*WfIfH%ZUC^o#`?IWWr?w zQ^?EgP7!lqlq}ZM}d*sSVz(mqeQrA_huV@M4iwXa>k+%O-ZHW44JrRxLJy zLoHTuEqw(sMcO38n*lQ6ve97<&+Y50NNmVpW{hed@5EgrWfI~ITFJ0D(<|k)ag-~cV z0@-#S9z8&EUfBL7C_53YJ$)2ix^)vhsH;Q&KDdwe{q{2oJ#~b@#Qr?YGHrh;`rz<> z)F&rNr}J@}p8^N(8hLRH`=jpeT@y z2v7WETpnG{qixxkWWyK7(3QJ)RF-$=`O^k3+oY;O;rNnl^kVc*(j(Jb_99(Dw1w;T z4K8fsKDzn|epoWT|5{~*3bCC1>nd5;@=5lApq%3>^U_gQD>5j-O@WH;uEG+4MSBjJkdgtP;JG2`S&&Sa#_w33(yyAux~lnp7>wMXzD4yy_2#Vh+7&WMkWFl9Ohq06ifTiMWIC(|1Fe(3n}U_0(+jGC_(1c@X4vzk6y`)qzH+WXtj>dhI3=)~1Oi0Omh z^vp^i61ge1rO8;F~ncj_=tk zIvnwqFB-?)jER5LdQ?Hi=Kv5dgPZx%XSjc8VLCd4yYK4E88pIi4AGWzwdmrFf6&AF zI-`N3cpnf!Klj%)afJEC-x{^po?kDKD0@>6(}1f2xkCOMS49E?+5^EenLUrqK%EANgiQdAy8BW0e}Fvw`>)CTcvBeX6ZgjWC~(KdFE9hv+M6*t z?loxF7N3yv+}r*v(>9DX;0V1TP3G)L5r}m~e)RO*pc zv#tyehrK*U7ilRPA zk!aAmm9v3`z|hH7+WJ41!*h~g<2G1sUubFoL9b?dbp>%)pHzUZ-n)Z)W(6jh>jY-3 zUq&n%9=y?`ajN7rr3`t68sL^H^MG_rUDQw2$gj4Jb8MXgAW99^EbKmu9*Pv4Rh3=;vUVF30sUrdj!_n0*+m?WCbo^8q2fo|;?vH3OFh4__< zyaqNQdP4&Q+6R)%gv|^b#b|oW*XMMKLhEgy7(3D!poW*Tk`Qn4f*HUBD@U4+eOL|4 zh+hT+hl`Hx6+v(dZi=hGf|lF9JV};bs&Bm{THmunMOu))>8UdnTYV%TFdKB!dzN+?+5S+WYI><_z_6eDC z+WvMv78tB-j%G_;_de;{^Q7!t>Khj7gp^izaCK?7PmUiHevBXbk=s8{114AjWHDj{ z_(0ZvDUl`5mu8_cWw}Ba6$W+4RbZ4H97I^qQrq9Yd$5A!1wSqDNaUXf_sQ%GF7*wX zXFhfrz!d7zZiDhtgk#HcP(aukNVacB**=V7u3*Xwp&aR_R8vnbd1PGG6$}j(F_VMA?KUK~Jd?J)TjC!h3~KL|i&IYtL40AFtv zb_DC5Vt8aT6JhF5fEI0_FM#^zCX2>a=A#}FVOKjnH_(#+q}Ggy0kU*_?=3Ifjr+H$ z0D{~ZO<8+Sll*k^U-Y6DvsCpBP|v8XH*H@U(US~mumH%)dBJRde1f|G&@1J+MvVi( zla}?vMV%}C?xRQOryKvG8`v3bs)mPaL*v7}=z1;z?uq)tAg6HwY9Ihbhu^awAJU&S zK#m{H4)PVmJ!}eqpy%MRP$Pe(&D;?N7($!Oz=8uTxRyl1Wg*V=gE z5PBge1q~I%qmY6Ol#1^O?u~P=44?CDh*GEXjSmoi`y;!_V+I2o>H!jms@u4HII9l^ z=&`W@f)v#1KQ8O!bY@+=fC3VBA@A7jQt^q~fz}*7i0(grY=jujW3=vAHS&qyN!B3* z;l=MjJrW~O7Sz5xp2Z?EtA`naLM239gw8Ub=%IHPY<00fb5 zozf%j+(s|urpUn~5r5pE7yi0taDcx4`#K81u*kwAk(cvQ$vx_F{wd}8h=eKDCE$M(iD9_QGJh zr0e(Z>QuRZ+`ff^GZPu%;bA#_^$&vsboSa6V!jmN0SV4dBKN4v`C)aESBtZV7J~U( zOc3e47Zx3Ux67y(o?#7;!=y1jxEueEF#$^c_PoxG_pq)GZLU2`d>%!3rdJjkrAK!2 z!2>jNPceo_9v)xpmu)_EgxsU9*GT^QoERVik+LSzH$Z{Ax7_GFY+!HA0MSfDyXT(k z?vob%yRiU**{7No8PKK&w77Z?8j#9IJ#hv1O^!lS%kt0n7@x79#}+R-TuINbiBfotv)O^y=kD0AkUNhrP$U_@qXE zYpkIR$Zgi=#6Os0^$m7rt1kV3&R~;r&xn%>8xzDHk!yob^vyrl^*R$4R_u5eYdHc> zk}^bkAIjLe{t{-Q8+D@9&dz9Q;o$+RGT7l8sx<~c5IBs*Dp_bAwqQRM2olfEe}Vk4 zc9Vt3hx$Z%0|;xNF=aW(Z*%CEmg_ z-riR#1Wjb9t+D^_K$%|E`_m#&XHzQ*&~vzFCzYIJB6Ieap%urgb=%UsC<9^hC4{(B z(3+*N>|JNdhT54KE$HT~okqq-teADE3Vn9^sA!>%+fb|98XIO zePvP!J8>9Ao~cC(u@>UqZhO(v+C!ob_m!fdtCwsACbR*lqtAwwQ@{hCy1%pm)*>|2 z*4U}vUNFO;Lw9~?Rw9)osm$D4f)?XmUvN$e8eWjjsm+Gr-@$~6iMgqWH+%YAV1gAu z7NbW)FU+RvtZ75ADtlW83vAW@YkP-BMr{8tV}A+L9?({@=u8(K9O&F z4CiS*&nHDa>J}36GR;VAs~I41Kfit308jVeg0#zIVj;(cr8EHqE6<OP0C9kbOl`)daY)$O<0J;;?A%Ve z&#H!_rNfB84*1o6aD2oLL(Ywd^#ZTmyK9Dlqg=at2TjDGCcH@qymjUqbf4FvGxc*ap|#6x@}Ug@+NK z6j_PV43T(wmxf+(J5kT~r++|VKw>6X0o1~R#{);Yll!>QeP1cfzTvOK0-Ndpf;nGz znqZirxrk&)Llzz-fKnnEL_I{Lt#O<8-0}IX?!m#sfdv{wY{3p7aF*=sI^w@wUdl;1 zOaQ`8mA(OjeI_2&*O_79989c3v-g+F!6OGyYBVD}5>W|JMvMsd5c6BV0+zUQBP_6V zpc@@&KR+A%>NFy5N0^}idafWHEjUnt=I<|KC5!NPqrW(T!j9Ll{*5Zxa^f&K*Ftjr zawS=CfJrKpWc85)DE8bbv=YBAz#5gkRLaSR_+g6q@-*6f>L^-JT`4CEtE*JX@Z1zF z0E&{AR0fE|??ogjZqfU3(3!I1@j9|~pd0<5UcI0vX5Z_hd1HMA@j|Yv)N2|G^GS;q zXYi@WB9s-#b)He4kH+MtvHHF`8K0kl-oxkemC0RJl}RX;os2R(GXc%6Dn>&D@rZ}- zPb!J(Btl-2B2W+9n6vkmpjV4Bl?F&viUK%NfXXmH_#u%8D2iDWAcFW0m@khVp9{N9 z7&DbP(1Gk7XhlD$GZqiugk2XTu>nJ*bAY;J1CcQR(gq#?Wq4+yGC*3wqY5A{@Bl2z z0I7yYB2tLJe5Lb|+h?DCkK5jdFd$~3g?0d0ShVgG6l4p2kXQKH?S=$M3{jLui1Y>! zz77*W+QP#K5C?de0OAUdGC-Q)A%ZOd%_kz}%W2+>L}>etfq`~pMyi$o5kJUY><4vq zdT;7z-}KnW2H$K&gE`X+Kok~5fVjY;1Q17f6amr&9##OQG7B#?nzXIwwheWiM!)a| zv^^L9r_m3B3^W^?E?~yI`Qf!(wU9Ow3)Pu3odJ?DRk8qag@-*r>fw?ty;X?M?5GeGW6VdRS@X}kbfC>Ph0tSHC!=o7> zcJP1%;)e#h-i!cg0S|z}2#|Ws1LjKvukP!X{cY{zF$mh+!rtD7tND^MV;y)-ur`c4 zFKkU>&&+tOw*1y*YwVu5X8==z0UVItNs(wyMIoAiwTI+0%@V;VuNP&ZIh92y2&-(k zMi0;exUrZe67@)CmgjR)(0ttRFy~A9c}gUif~+K|%mVQAO^-$M_Lq|w4!my^J_<}z zA?b<|Lu5*2A)0rv67|lAMLqF*s7KWjivr(f4{^A5$f4qjg zmxyepp;Y!W2-Y|f2|IZNMV_rib8+3xIZ#3BP@Ul4G|a88M6V}A)%k~vnh0%eYirwy zYwt@rDs5q5-M(vANBrvba>DMCi52-;ZT+q5*4X2*N*nu4*&?uY&0IEM1_>fN{*6zdU!wDfFIgPxZWn<9+^rhhu0i5u{>8eHa7)5yJ`s} z&wJ6fw${~r$vM*&uCCxryLOp0cDzs0u6k{{^!ivQ8f-O~8dg3KgU_SbRiA)C08Qiv zzKj+=kD{M5JWJLGV(;@P`ZkfJkBl^sz+u>GVaJz7K;+rg z!o@{r=UEY;R%DelCy0#G3URLBevOL)`* zqy;>(0F74#5KDMKCSwZ$ri&3ES$H7!lg1Z%!6v&4XYGNurEM%p9@7gz5@*`VqGLzU zLT+15_Xc^?TikPBx22wj=^SZ zs}Z0G&hW4Wh|SoR5uCl&CJhu&k`der5ui5sCU4Xu6TeIXd)x3=z%U;RBc ztv*7s+cIP7jSY}0h}ev6NdZcX;0%u}Krp$FD?Ca7=>U&BKrt%d;n#!acKLYTY21bZ zv@JUu!uL_#BXe+Yf|!Brh+$)}DSJRnnTjC}Ljoio_TWn)VmmNO0IF00kQSrrFee?R z7Bc~)&8WJ1fTFY-RVM%)WCnDP(H}A& zhBl&Y)kS8&w1q_z9gU_85|G-ofg9`TvUE|dcg!}aDQgOV5Q)DNUCuQ)WYLDoh0la$WgJ4Rotv zl73SGB!!5ft4;u_0)Tewlu1aIlv4$e7NhEr2*wDImhcdODhmiee(7;S&)u7m^TJuj zaGUfdZDVciLfWbcO&60EYDq)jov~-{4mK7`pYEYc&w@icvLv$}mP~63fQaCyo2Ss* zQVo!HDH$pO(lRB35g-omfawMe^nP_^y$^poa`|Z9SFjm3X%lhVbe0*eXklR@hpazj z*S1q9FNjjxxVQ}d->$7c!mNdD=TFtot*O#!`|xS|OHuf_lO(fI+uy#9pUO$a*#sOA z$Rylwv>Hv8d{!)xY^h8tQ6spaLFVi$MVo35lV#;3pFwgMqm(I19?9JSfizUeB!pxz zcn=V0Ex3&Ey6Qwt{o0znXyk^^eztLT9tLee+r-Wk{2opI5JWWXJ32UktqpML9XRs6 z#MobUojQtE)E=tWWgF@baOJ{w)?sH(aQZ!{b=ZagG!MYD6E_&Z4eyD-|6~MGQ5j`# z30VOQ`vMH%@f}La~!CD6da+o0vbz|)znwna{EC?cc;6-Qy+!o+g*weOYZHn;7XD^B!GzUq~%s$X>)e$w?x< z)Z{%y9JjKLLjf7F$S-*}(L4YTB*B9jlapkLL@J3tktnH*$W0;n%wWo3O+r{wMM+Xs z312FZ01r9LkcJA*uaczmNv}$!;O~IX;}g9Njo7gI5`{<7<8q*FVrk0oC=PXy=|H#u zKz|QgXXl|oYge50=7$rDoC!A zwmuJZ)k$wFA`CfyIQN20w{F8JJU+C?)xnrU75an-ynV+u_V&K`HPF)1vY*SRA5?qo z4wJ-*MB1#|r!Rm&z+V6}B?l0Pe4bzc2%Dl|*~vO(62cT4m?6OkkScgmqa{JY29NC< zP`3p$kKj5U0CjC6u5(A)29~DgG_&oQS$!%!~kOnUbLrAa(Fytpgg!eRC*soc&G_uG_vu^N8!(Nuj&` z#K5BpB1am;3cv;J?KETBHutTeLYRx~!*UT%eFH@HlYnR~Xd#ZtV2l89$md}MNCP~) z#NEhk{c@q>)Yl@QPDyT$xQ-p4baOh=17y<6kArSxF%WmxdX1ad1CA`8-MhaZCnN0!T$BAvIYd$Ypk2y6B4Si@|dVJW!`?+j>!lxq~SM z3ias|wWr-lH!C{=QINH>!!YMh<{ktaPS&W&jIB2|K;l(L3bab7U{MCX3JClZr|>x|SL)ShO73*>(Um3?TLG`qsoXZfidM1G@Xto|+)Gp=VaS;Q^9D6v=9A zD>#=4Ano&cVAicz1Lcqje*g}Ec0HrKfAs*ZXNAq1<|_lpmo==DKZL81tN)a z-G$7_Zqvrk!pe$hqqYtX!@JFyp6HMtm!DR zlY%zt)46}pc&GU@O5HcDdK3`1gJ_^hRfR&SkCYK(7=R>uMx>}8RhI`yOL*WM)W?DK zd0>f^Fa5DbD2!_Kr?c<^^IC=K{kB<@x5 zk$1vQb~leE3UKtFT;Jvph*;*-lWW8bLCF!qLW$cXy+TXr@ad&Qi)bp0anoS zpc={A)@G=~8PB3aVN#6)WyEEr;5gAbX#X_(I$X6; zYpSX{&_t+i#6PmJ^0%_Jm6*0ZSo(JyIABWG_ol_VE?acLZPV(9(0h|=CK;f}D(n=h zH}=5R*n3cbAWn;2{Pym{R zy1w&fY{!B9--3Im@f>2Rti&3}gO=5fmc5Nk_uLGR9zYUnB;q6423g?ViKSTj!bo(N z;35C#KI82u-qJ4{Gf19eyVUlUW%|^ zZnCIfP7;y+_-`g5|IbPi^%ca4`U?_-{WBAUA;nq3Pmb&tjVjJW{j(BKKdjOErbeS) zu{%)Dotu!~`sIJ|mMlEx{_fPMF3&yt4!*}{=)Lxad&l5N;yDtHBLSza865qC)RtDR zEzNTQ$I=Twxjl$hva*tBC1{|2c0A9QyeEzMpx1&~aRXK^t{J*{-KFPtZ@v9|LL_>( zFq5pc7*d#lFa&5!Sq>Ugk%wTXYPEvD6H=0eMi-=`m$Q@5wh937R(}&TIUbMRpz@FH=p^muMS&k8rPW&v5Uw3|(oN%o@i?AX(9{eMj0e z=|;zbye%X!HEJd)P*|Sr9279#aqQ@Y0n?{$9=Lcxs@J0TE4-I}RLfhl^rG*&<(K_F zUwy@Y^V+`y!q?sCv2DYDAOYd)Z}@Ln_qX4s&#w5cTltGm=(3C6OBdC;FPKx|J8x!c z@AsyKx#Dxexm&kxJ(ymrFTJ)z(*WQ-$UTbhwHv+nPP8mmW^jxPQY+dck!Yn(GBCl| zkS7UDcIeQPG+ujYNI(&)epEv|1C8I--hO0z57$xcyu3ne{CQ(R;BWX0{zm~B2aNYrwV0HSx8{J;1$)?@1OKiJ7vbWif-(1RyDDC0Urd(C)7@ec}NqAJW4iP}%mf zbm-iNbeE}?u#}fR3L^cV^!xa?mYqBIAtni6fpfz(#K5@GYdg|=k%dN4+nB*IQJC7% zz*}ePoH|fP)rD#VciPxq#I!);i-%JJsPv!`K;iJCfOym2c+zupr{{E{*RZ44w4wK4 zhUN){sTFNBOX{3j)0j#J>OV=q>OxJ619fN}DGajWNdM=ZG3C0HJC*5|F-luRx+T-!eR#IDS=86u9ga*$qLhV6wmY2 a9sdtN6eHRrdyqB&0000AvglfA9NypXa{#=A1b*&&-_9nK?6&dOB)k#LUD105bLa$_BV6=HEq#kGmWEawY(P zYgJuY!N_}RGo8TO$oTXsB$&89>#C*cCdYLmNX~ke#Hv9KA93kET{$`$PbI2&f<=QO zbYEuG&fq#8;U|Hp%+iMX($XltD84sh%`HcA9=yrw*x5Rd?dw|aj_wW|b=kga#C;uk zY)LO?99@%_7kX6dzR(&*!tnq4;>`zco!?9(Az&zTo|L_j^WL&gF7wJuI**)H&y&sO z9l;NhRvPV@eM$C25(Y1oLfTY%Qu06J{1!LY%l6`?e{u8in|(1@!4MJk2$1+uIsPqnf+k()k8h#rg7tMJHVtWaqYT zq|_R>T}xsUyk)<9e2b1o1pB702Pc9ve?7kQpF2}x}2=dBPVaUdm7-ZjF+bUL0vak))KQnKW)qx!vgbJE?)QXqi+7Po!iYjGEI9xeX+3}trhX=ZOA z6m<4$ajUa5?TbuamQOsfYFx!_%v5Pca-z3$eHCN9QVeZN0(`DY*CwYcn=Z{IwS{|W zMVA?tHKL`t<(1kV)n+5idi^{`iXLpvnO=;Rx{T4}wriDGR@79T*3GDl#qU(VPNH?_ z+WNh=8;jQwV zM#imv9eB3r+LQaLX%UgUmS$Q-V|+Ygp>ovUbJ{jiX~_q+go2a38CD$M(o|A(oS*f( zh?L!-@KukR?4c%)OIZBg${L2g5L6Pa=XF(yBP@&9b|agsWh)uYDy{MN@*W9zbE^QG zPZ8wOAg?zDskn|*wf&j@!i7Pbw6fw_Jr}n|+l>O-_8a2*TEQA7y+XU@NUD_gnXUKG z2}$1=_w*$M6~;^rw4#*yT22U!%e#`&t(A(xyf|-T(y3T1sVLvn_}AGKzdo!w)-*Uq z)`#%}qna5)jZjh2p>&4DK;ogEbdo#F?UZ%H>ljUbLLNV;50EQ$-zmX5OZ~Oiu>6ZIQR6g&! zPTyC(E=$qrR?zuYogtRne89+%HynZlT2P=QPE)k~RavpYct9<_leX;S(cUYWmJ%5i zw<#|0L;Epc1diZ!djsOtxXCrexN0iPy+W$%xrf_3!-ktsYsF?BfO_-+rz;1%p|X0Z z`xS4h<)pP{yf5Y2%`K?M%L1lRyQRhGg2R@R1BO$0TUeSMPUR$cJ)j;QyWQ-2SYJ1? z%~^ILTzh8y5rPT)29-&Qo@%PiVei|f)aGz{7xO>5>77{OmMi}>lo?rwpOta_aN2a} zZ_L3$CVhl%C4|)F%yc_!V?s)E@;~94fP)o1CTwgW@3F@BcS<{+x8_h1m|gj-8eT8~ z{P{;v_nE3QwfJ#=Vz7jq`qgMV1n|+2J0HNKgTY17#cGz07^gpi;87-UU+o*XC;A3g zg??@@etFPbu_%d$CSm+feh%;vd6_sgJ6ydmIB8OZ2ObCNBuk-&Tg}J-dX|>uJe}kmEmBH)Q7uAac~6f=i$joy zJK0c6OM9t_Ef1k*Ry3>%RVQV4P_zwS5s^T+u`MbCH zd6?wSSFRIE`|C9((s}H4ZYxc^RT{P)UbYCc^d0IW&aSPITSpqAIQF6g6&D^@VVnrOzTa^&s3buD4Zh79z^>7JLQH+- zqYS8QcLF8+03Y|4eD30R)L9O+_7gvyxH&uXehWGsGF8ox(YPKFj0 zeO}1^(}~=Cb++)WmDI6QeKp!MtupG%f{wZCy1$n!&RIBjUrS~HF0dp*p%w3uW|XYcuU?@&lSpJS-nf;@|F$`Umi_6zQo)P* zAN?|yXKv+GF@wL}{Z@+e2fPCrPyKWP%8JnsD4{x0N4};B4)_O}kwrPV3fK?Wi2^1> z9|==dt|saLUjuoB-9|amKlwXh1UO#${B=k&OyF9&!@HCh^(P1Z!t`T$%9BxBE^)o# zrb+Lsi5i*!ebE*rcxuhl)knhZ#ON)wO$oi@$3X1Yo6{S=udP&GmK4bkq;tb{^J~U4q82PKlFy7~0oQfA>1ZE&nMwI&x>vEc6U6l>WUM9Dh&x=`RU*Gbxx! zkNtRQF;b=RUB91-eD(xJv`D~Lmt+aUbpk*|itL0+z!SP00+|E6y z`uA#y)}Obo8;y%<&n3om?p6xzZJ%th-0j>wzfmi#6_%M|?B;=zSIm6DyAoM_apC>I zXM6D8M09ojEP0;(Tm6=+iv(2Opx(Oj#^^AOYqkBr2bn&rSZqFl_g%UyrartZl7oXX z-sf{fs&@{EPIHwb9qDY_<^%-#3soQ%QDuSy?jsU+(Fip2|+_ zGrN|zd*<~MKX{Lbhj???lU_IhSOdz4)6#L*Ah zm&9^`M`a&%BRsm}7gG3v#DiB;WAYz|2o$)P`>;wKw>@5~1xl# znaLk1Gsg9W+FM2frk6^A_#Vca3W3`Oq!4wV08%sw2(tG4QPdzk%6LE|<#%m44u|qJ zyU?M#nQ?*VpSqw3iYXL4`rl88NPi0HtH8TIb5i9co;}~0@H+On_0OFWps8>3b*XNL zROE5^A`ad4h3;CKVSt1Kz|T<$S=!5XFZ%6Vi5u+l>6fg(<F3On}Towx%MlobtMeV$xN86aA@wyIsb zpySR3MZYr<`22Zdh0P(}B+{cDNL&Y~SPHU}if;!Las3k+eLw;apzg$Cn=31tX!;`8 zY=|5HvpA^g-d!i?nHGr%`~;Flh)u-a91db%jAcig`GW_KWahiTTh z{}^LvD}yhSsCAb|MoLE2G})=@*?##ViZEif4M<3V`i@tM!^>(*Rgr=M9E%|@2gR-B zJV|}j_)t9!JI+t<`3J6z`iNgqpaz#UNv`wl%dOPql&jUOM&>{9=QR^_l&7V4>`hsJ z^G|jS@;l#xw>et_W*DeS$UNv7$Yq?LHspOA%H3LWvgs9kgq*9fx_t)_w4AYf&erE; zoUk${(?)h)eonZuyEw`pl=f#;ELYvr!4*#ks>oM})C*(SuXf}-zfb9s0fYSo3g&C* zV=nfhl#iZHZ8A?c#4g7pM_Rrg?|bjeon~Ou(U2Voz^zl1+IZQ!G&%DZFh62aK+ek- zIo}{Z&X;+Mut%Mj>T@fUL(+){SDfT6!du|ddt5){zl^BJmNK30o-LWDrxIFSRRt+6 z!mYbqyWs;|mm8gb++|aKrJtx9R=#Vi=s69%I$3gH4DJ(vBFLcl7y^(vnPL2npvJ^j?o{T3??tCz0EKI&uu8tndn zkP*E{3i=Q?WeHe^H6*-O16$ApV$=)$Nqz3J%o|%deE091F8ElmB!tV*#0J2#d^I^`4ktA5yK?Q)z|RG`a?V z6vH1jHr#*xxAsihWpi)FEq@|s`QcppDIGpfxROKBu0<7Fy{apE5|3#IrOxK5OZfiT zjAMJ0KGV~$kv@fkjt4!>L}(9#^U%fwjj7Soc36XR)nDkQ3%8O)y;4K2VSi!6N4Mh@ zw62zp(^}TOjuhC^j`!miC0|X$=v@bbB+t5$f4<4>B;>4L-dJnDu>0!J6a6@}jJN&h z5e^#-V!s9Wub&ovQDiBRQH|Uc+sDm4EBsD^hoLp{bH0m|`La@aQ;Ug8XOExRXK|8f z^?z9pD!y^tS<2~MSIn4a7XMfypgzG#m*nQ%dM@^@iK_bUx$*elFco$VW}e6F=)=J* z3o<(tO11GJCk*0owwI(!QK`Ukf9T;Pd{7*GdM=q|Klu8W#Ibn*K754KV1q`FWw!Tu zep>9~)rzk~X|!cCM0wh46KQ1GO>+TU8SrsBIj*FPcmY7D$cXZ;q6s*Vh)z%o(t;vn zx!K|qj$8j0+q9$yyXv#dz}`dy+B*;=H54B~0IEX%s9R#o6}K@lXi@`Zn-ymH++KpSwT zEpq>t59b$ORT?+07%Qzh8*}&0C2m>=7z55P?UqIjx=Nd z5_RT#G>kXWDMf$`cv#^@V6=CmHr$UfeA!pUv;qQtHbiC6i2y8QN z_e#fn4t6ytGgXu;d7vVGdnkco*$$)h)0U9bYF(y!vQMeBp4HNebA$vCuS3f%VZdk< zA0N@-iIRCci*VNggbxTXO(${yjlZp>R|r93&dmU$WQz=7>t!z_gTUtPbjoj2-X{Rs zrTA$5Jtrt~@cao#5|vM$p+l3M_HC0Ykiw9@7935K_wf*-^|GKh$%+opV7&;?rh9&P zh@9}XUqp-`JNnPs3e9~OrZBIJ1eel)hsimyfZSIAKa-_e!~q3^y@G=z;FN<65|y#S zIBWtzFv3n-*Aa|5F3Z9=zMs!RG6&8j!J;3)knD|vHy=yM(L#G}?m=jXNQ08rzG{Q? z03L8v^?3q`cxQdd42Z9RVo{e%Ga$C`=^7nqlxSf^lZhCTfwJB*!vD&M6QLv2g3NcE zlLNNSl;_UR5*{d}Kf!uIIF!i1cJDS7fMI##KSPmi=TR$DWZKb=cLBWJrF7#XGuhG7 zjcL@fyIHYDII3IRrCBTavFc^BM=uYdvN&GWBrcfogytsZ#mNX@9K+}pNp_= zk9AV-B>m?U~{NIbky_m^|J@%P=#HgBe^ zDfz`6g|`gOJpKE@q~4TH!vrHVNVb%n^e@&ALm85qj|xaBT5I90Ycp`;(u*rwGoyp? zo42?p->1XHi@SD&m=D5+6}|bUFWFw^Ue~(Ns1WQdWg=ux{zyH+AM91|XPZ%d*fiP0agmU%;tlV*!A{7y5(|3pSIw`dLqLknHv_PQBq$*|@+K4(r z(nO>@f;?%pkIO4xr70*Nk#eL*y7x+_=)8hsToX389#3w1KYRW> z*jT10YzQG%=Q$~Vd?jE*NFJ3Q_1xC`bl#coS5x4+(w)Pk{J+G z!)n>NlV4dtbN2@K)QdPtA{jC87jPU@hGv_JS3`DM&#QrL5o|v9pZ!u|C7l8Y!06X} zo>&23nPdehmmoN^p|A!0tiUTr`CHa7lrfP~sQnxYB!UG1e(yGzf9ed??k|R+753Jl z7|p%-Z;}uZWB`691Y{;z%fht0EQ5I=Q=xM!$55sB}?14LLaJP!Sh9=o6Ct`HH&OJAVuCgBpm0G_>L zLgPblVMON9`^+|EfPcuK*NO!3l?TlBFPGtQ7{6XmmBfL}Lk{{Mr*gyq842232l)y! z&EGfE9#VdjQO(a$U8DtYD6#;quA5M_q9pjqqG3-3XgR=iH5haYfFOE#7*m*WlW+;p z?*(QB<`&=?VN8b*zDdAXk|0u&ChUKnuK~u}^00YLP@tffpKM40h@>0qAv>J$ zJrJO6LoW6nQ;Lt_8TqG$3|&uIySi8pIQWB_=t1;Ew5BRl7J?W_#P#Q!jsiS1)t)R& zBm=TT1+G!Pc}xbIpGmNXV5B}zM2aE|pbfY#^zg<53DRF@)}T12BMzF0(fIJ0A+3Z) zF(FCSsFO`ljPqMasO-{OJsw6GD$89qiidf9!om$onI10;i?xPp_7Zxa02^=nHJfV2 zo}1Yu%99UK)~|dQR05$flJ_LP@??KD=@6^q3rd&zl=sq`D155z=wL0%C|=Gl`rS`{ zw-3XN{PCKN>`Mx4Uux^yLNOaIrkrs#Bqr1f%w1cG$Fdo;T7H<^$r|;|#mdi$cevZ* zdUc9(`eHt8@K+4=->Qr*HrT(({2Uj)Bl+GPr7ru{us3&!JKUzXmE_(`3UuU4d?;JL zc1X3KSL^U^==r@m)sd2}-$!fwYMO+)%E6|CLIK_ z##nHbe&&rMSDpx}2%+?FJ^shJ8yjE97(vftaucYh>*)KEqRD9|NrLKH=hV$e9A!~^ z4bADay5RL!GXeJ2_zHiwLYIYD#U!gVUX?0lWn6r52N(6LN{Xi9iK=_HO>X!U%Sq@l zh^!p)kHb1d(Ot9To5AfPe}~eD)OZ0MoXW((BIk$hb?gir611I2@D$KJ^VOg zT4fSfiCU#LYYL*CDCFNS4@bFDJa-HD&yA+x-IPQdMe7%+($&f?mC=n) z%&EO|+G#XLeHlo%(5I?7ol`ugo-_s0FL0#nkfTIT>6E9z50T3{?rk#sL>rRnNM~|9 zbq!>`l)R){K{#)v-}J)R27GTgA_f4XfzXn2${0y<*>7Svs39Rgf5ulzf}LmgT3Eqn z8G!%JRL1Gwj7k#Zh=Le=U`Dd4zH#;|o}L#6L-c(Lz=^Dm0-V6?8-?W5q)|w-V8|R@XK0f;$q`9@OmGmQp4JO_0Zgzau^3zjqT)q;CKx|;eNzuf>j1twm zQVhYEF@QgguW{CYFS%U=FfSW|H*CE2A+vuEH66-Q#2iU|Hp8DbO&^njfDi(!U@PIK z7gKGe-eQ+t4rUUtOnfvN87~ND%ab5b!x8Kexv=DeQHV%lmmMLXSRR33V1Aty75xeT&9+VL0)Pz zHpe~F;-a3{`62`|2n#wq#ktiRT;Lh?1diJGf-G(W%QRhQ=!Jr8$ZYk3OReu(4&Gvg zpl?-6>j!|kPL7>&DkSoxD|)&8W{jZ2fm<;ybWp=h-n|lrVTDs2KpsZq8Q@_M%r>_G z6KCrGAXxq8UNzXk`cExGjmaZsNdrw!&Z+iI)D|i}mo;laGQ-M%`}Lv&JJzx${Fd2` zs~^QJGpsDcGk=sm8SeA2z~=GbR9j%8fE@kpnk59Gk8>W2JHBvC&t8y~%f9?sa~*MT zzP9Q8+4`#QlH>2jX$MYd!H45&7r$Jq^`E!@tm|Bu+=?c(yux?!x_X7iET(66!RFDJ zzB?@ffQNcw6D-yOq*Rav4dB9dVs+0RBr5E*p3whI*rE4%-H25JcTOP^)Sh)#sZzJ+ z$IbOD+T^K=`N6CDCpfKHwv%aj}rTaikoks1a4O*+M}j{W)R#K&nzKm zPg7psVmbDEy1VO-r#xCjVwX&}+zKNECBJ!QguJUSSN_kOkv4T&}pz(^z6}X zGCV=1#|a(xlOI`HtWV8dgfuF4s$*LghD`Amxfcq5mblTfRr+m0tzen&#b|xUxLu~H zK~RBt!`&v4%R?`#kjuBJ$opo+D?{Uaa{a2hC;Ka(&ON7#V0K>#_J%#LVtBRt)u}`s z=j4Xe0jY2@p+RHv*#26?%g93kteo0Q@0;`x2ZCw zUn4`&W-e{5P}Q($ccv`W$#ILg_$6+&?B*0cJk#%;d`QzBB`qy)(UxZZ&Ov}Yokd3N zj~ERapEhGwAMEX1`=zw)*qz1io2i_F)DBjWB|*PHvd4MRPX+%d*|}3CF{@tXNmMe6 zAljfg2r$`|z9qsViLaWuOHk$mb2UHh%?~=#HPf2CPQh;AUrYWW~ zvTV9=)lS#UB-`B5)Kb!Ylg0RA){o3e`19Jl&hb@~zS>>vrFR-^youk^@6>0S` zToim7wzkY|Yt*;aGUy!o{yxd8=*L;orYQC!H#=|pjn&hO>o9B$tJu8TBHmxPPsm-) zM#T(;Z9_uvy1xq;yeeWQV6|}+=O;1%) zGZyIq}2>crU3z2ri)(ut%F~+%S>FR4^Xw()Y-+~&Xp*Ns z$?%1aydpzNIz2aN98}oth>3boYSifQ)J81Of>6k)!`WQWrB;xxXccBzrWe5V*>oMh zon)MEw$@-*!>L`CK}u@x^9-4gfvepI0b8q5QYVXr96{4Q#s2ZelHXxHv~G{GymRer zqyj7m)3yn3z5i4koiIJ!-u=p6QeL|BN+pWd>}TOFOVi01q839$NZ&I_quqb(n~9Wk id-{KKnnu*>l46e`&P3zgUlQEeAE2(Hqg<+p4E|raIYd(c 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 4c19a13c239cb67b8a2134ddd5f325db1d2d5bee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15523 zcmZu&byQSev_3Py&@gnDfPjP`DLFJqiULXtibx~fLnvK>bPOP+(%nO&(%r2fA>H-( zz4z~1>*iYL?tRWZ_k8=?-?=ADTT_`3j}{LAK&YyspmTRd|F`47?v6Thw%7njTB|C^ zKKGc}$-p)u@1g1$=G5ziQhGf`pecnFHQK@{)H)R`NQF;K%92o17K-93yUfN21$b29 zQwz1oFs@r6GO|&!sP_4*_5J}y@1EmX38MLHp9O5Oe0Nc6{^^wzO4l(d z;mtZ_YZu`gPyE@_DZic*_^gGkxh<(}XliiFNpj1&`$dYO3scX$PHr^OPt}D-`w9aR z4}a$o1nmaz>bV)|i2j5($CXJ<=V0%{^_5JXJ2~-Q=5u(R41}kRaj^33P50Hg*ot1f z?w;RDqu}t{QQ%88FhO3t>0-Sy@ck7!K1c53XC+HJeY@B0BH+W}BTA1!ueRG49Clr? z+R!2Jlc`n)zZ?XWaZO0BnqvRN#k{$*;dYA4UO&o_-b>h3>@8fgSjOUsv0wVwlxy0h z{E1|}P_3K!kMbGZt_qQIF~jd+Km4P8D0dwO{+jQ1;}@_Weti;`V}a_?BkaNJA?PXD zNGH$uRwng<4o9{nk4gW z3E-`-*MB=(J%0*&SA1UclA>pLfP4H?eSsQV$G$t!uXTEio7TY9E35&?0M-ERfX4he z{_Hb&AE`T%j8hIZEp@yBVycpvW2!bHrfxbuu6>_i<^9@?ak)9gHU*#bS~}$sGY*Fi z=%P&i3aH%N`b;I~s8{&6uGo$>-`ukQ<8ri(6aH6p_F`Fhdi6HuacwfQn10HVL7Om1 z4aZpjatkbgjp$L5Mceab#G#C)Hr{^W|TJX~?B3@2buj0;kfuNTf4c3*Au~O^aj=W2$j^4okeCxh#lwexN@eam-u4dNz zN2NIuIM4566{T&^k%4ftShcPk#=im-zXm>QWqH^0>A@?MqlDZCZ@8Wi*@tvhn5p<} zRwFm@gz|WZp91S5Z{}tB^e9|FBg(~Ik+?&_53J6ye_QQOSJ*846~H%s#LD}|O9v9H z1fLrrgoPo_&bs}eqEr}2en3iqAcP^>YsKiez$5-6m6(#3ZZ$@M5Ck=_Vv`QA>1A*v z3w-nJ_;5Nc(0_%`kG91#sotIlhO!*5#|yg+Gx{V;0ty`*=Y9=jCh$l*=fE(~t}%R# zc}iNpO)OZX`P=leQY^?^DF1w%FJh>Dkp}-o5Ig|2!6^E>|W|zc~W7gF;MtxX7 zV~UjQNsUC$EYXpN?~o{83D2c*0~7;Tm~%FRTAnnt3ln{?DcLZ=NsBY|JxwUA-6K3V zP&#|9t#a}Q4{Sg{6v-OmjJBkCh>m)8vLNm4lStMUT$)FZeJG05A)px&o3H)5oAl9= z31@?HyCriHcCDnt628BFN+T;U69Wl#itfvqIDBydMvOJO0Zl?go$cfG5>TK75CMj3 zakLaH3=&J0e}Xmqlav$S0>E@_Yo_V~3SiiXrw)$&!XhrHCDQ%P1BHPusuKr0LthAB zg)mDrLy>2*yevMMOQe6fZ|)%PEb!lC^*9yaX9UMy7-v!fSICssTR|wML0Ic2BhKAq z3I1X~ z7^_!M&;6Z9?br3#HU_&kfJ~%botXQkC1v<}ZZxN5q-T)|Sb2cW3WYUBbDZ`TH{!*^ zrmAeRM+(QI>D+?}guZ+dH*X)@^!O|oL69&Avbtw2^M3HP(+2kV{O$^3BN1RLfrC8nwz7=VhBR%>!;7WR<~;34B_j3A{>^@e@H+Q! zL=UNr1(JvKAQLKT0b}EMn|QUWtY>!>8-t@fVj_&`~gGd{_aPy5W>0u5L$zrsU^rBO=i$`#Xd*>kh)lPf}A znNXSEl`+HlhXtylgS9(#N02A=zVV?#OF?)Gr>(HszVa+1*2VG@qYttJuXaBlzP`Pb zX)ueu?s&}R>xI#^*r4gR?tMFi!_eeKlIM5g)Nk)Y^h=ZCR**xY>$E5knctRrq!zw? zX{2|hwR9LXTY1)pTlKg7U4_ej{dcj2{!+1sZ6<@9^?mn)=37V)DIAvS(}S`IgFO!6 zn({?nYw`Z-@jvt@!q|5z?TI3(dx^1szSn%azAwp>N#fk^kt|=MejKtacAs@Rdku#zT>9$s z=m7ek)`=O7hO2n+2Uj$QUs&2EIqycF{(L9Y#^IyxXA%R@ z&j`VAprIV~d!pH-7~zA+bjwVn3kOB3;rlg{nr&wHV12N}g^i>Upls~=z`VX>9HQ#= zTu&luVb@_Lkz63&&^_M!6(-2^0?GCAX9XKp{O={pd|AlIMGriX6s_Jy8_q9|{5jLc zxd1aj_ucE7Vcti#$r!s~w~W=XpaLQ}#mX`apR7^n9-d3?O+adJYr*L;{c)x@REewM@vZN0njS3iE$88KHPWAkWt((OUMherUnPm?i&8@!9E@ zUW^$%CpdruZR0ohzUq-XQ$KEIB8Sjgs1+wKSUH&Y;=ee%E&O$X18{&979d~K2uJW` zd*8awHCXb;Q>4z$B|sPNv+Zd__f6&@KmS+L`z3H1x+x|Xs7-N-iw|1C=QiJdU)f~z z{vO4hpP`0MyqmwIHN=l?jSq>OKG6CEC#O`*blP`?>)CUWj5j1cB>%6N7;`kfZ1iQV zam~SDB?{uyp^=vF_u|=8xn3S)L;wF8ZRZV{bezM-EH;MC91JQZ{KcZZ$IWJUy?SJGeGUWm6PeuO8-K2|hD~p;Ls~9Y-4lE+?|bF)XaNKUNX(K7 zBQk0Z{n>hrH-CA`bTr$6z0n@Cn9EL$XZ3=X7NopjcI=;z<(X7-oEmK}BId=PxX*!b7Q6oL@ufd%eEPc`_la(}WkT zKe?-YJWn^6b$^{dhdJZ)I!Kn6c}iw%o5mLDyvM7qJZbkGG?zLU;M|W;Wis|A;SuY3{_X53`+>9g^B%O4b{;^t$^;{oKHbo*CY%u91 zp#2d8Pg=I0&UX{qwr=y=o_^BLdk=KYH$=Z8+k|p8V5`ph~3b^{^NnL4m_+4zx( zeoTt@f<$DmsB1}o%R1Hx`ToPuBl+P6cb-?uF{1!z-2WvdR4+vJ*SYTic5@gwnzu%e zD!HF^X=$ha^#1hi*@~^nDL!HQ;MC&e+6=onaJgm-J-+|>PpmU=SIe?EQE5vJiqziw z*K=Z%bWZz_we!qiFqE`I?#$yozNxIE7Ei;csv>++r*?)0bozFpF&oLh94u z-2c2L`5BarP7l>87|f)vxaT*9(!Q`2xBMZ&^JVj-|1)Tg!6OW=lk=w zLwVlr!*<(l*L$a?ox3+%!~UIj3Ej@KD;W>1E_c)1szDi93BC;0K?drOQ>@$yi|DtT zSir}!Yx>znf&b0KS;Lk7VKPDF@e>(qQr0%SNcGQd(p9StjqJ`QSW&c{ggF?5{d22w zlkX%JTUq`;(3WSH+)WHl%qlF)iNG_?}K?ZM3cS7#u5v zZ!apx4Apv=PWsn}eD%MI#=KA)OlNy0)l@~D^1;NC5k@|OPW3wt>WNYDN+8~+gM%E! z$ z`Olr0;eytiK&~O*ps%KV?2vq+DhuRh*!6Ilzu>A;iMe9 zI?zug9nT9CI_o)O}KF_I_U z_Cswu{)3pCYgw{eOt#E?UCqBwkAugSl>5 zX?G=Ci(Lo+r3suuJezyQyDvw*<1b{rx*&ZaY2HlJ>k{Qc%IZeU43pQXw4mh!4I5>l zZ@4$uxaPY#!*IhL4Hctn#!n#S+SiPcZP_PTd5fXf1exhFi5zf3kl`UcW2RUk)F2oF z_ogN`{03PiseQR;fa#{Uy;jeNlJ0Sle`~;ZYhLjkuy>a^!Z_nR~`$&F?NVuIE3HX;i zD82snwlwPb`7yE)ZA_Ndmq5zuSO1{{1}(d9u4#!Fl_|eOuxKBwOfQ*tG`VjCV$-WF zxi0c&+w}Z)rqz{%f46@`ADPdGm#x)+zpT+gyfDi;_P zR{#Ta`Mzd=putKO@5lQJO*aNy(i?}Ltwy^Z;69f|eqi#UCI1$vL!+(#mi?dK`OL$! z3jQnx$_$+Li2<__CL@Wuk4^J7-!n3j2I4N8e#=qpir+iEQcrn3`B4yNOd1BBLEni<(tdRWE>m0I^ zt(^*Td+S3}$5rOzXy=MW>%#MN_qy%5St!>HrGZ~Fq1WKw-&kv@2TrCcPCPzY%2aO- zN?7@+$4?&qA|uv{QHuV)O9haZpG7Jx2f%D)7J@oWTxJ#E_YSq_6qT1tomOD?02(1otT{Hk8{?g(944>h4f% zOJ8tzjecV{x2uWde&6oAP)*({ zFkW0Q%gdI*9@W)oKO65DgP<3F_BIKvRXLAR?Z61&0g2TR6mEZ7OZK?dP7zukdg?s_tNZeuOsh^e1Tmdlz5rIg?LcK|%aQ1FsSDv#W0EnHd z9M)p;gAL_R~Z5cojTdwy+qDsd6R01Vtxmq&FhfPz{wxmB$${zW~z@{Ro_ zK#y5^KqIp!#@or>GD`c+aZ(PV1=`Eo1?a55p6a*WepFgxvmp!^2518YEU-;{F}fLr zD~)=S0m=+px3TUN8-El}Xb}{2ET*_i3-|WlY@V7vr6#&cOr*+oS9?GF?@)K6op>>o z4af0@%KwaLr`{3P&)474<3rDMsd!IM-bepWfhfuMmJt}#0%PgDSx*q(s0m%ZFgWTj zwwvH%2!(i9{RHX~FVUB5qHvF{+ZF}+(bZVPG1)a*Ph>KV;cYNK^aB@R#dS~&`^60V zn2Z24Y{{djzK33}t@q%!v5k)u7jAXB_H{#4Ut2 z1}0j5$RXcTyfazqL9=^Qe%GL`G)=!lirv7AgVRf^=XyEM&kiOe_%JD!O?sXK&hrDo zF}m9B68im!oGshuZluy2H#T$`XPZQu@zf;(nBCZB-cjQ&w*p@Tm_$pe^MTN3EauI) zJG&G^H-4S|1OCd#@A6jO+IcAXG#5M-d9E!^YNmV7Z(=F^?8bfrYf&mLMnRd_22&Q} z2*msbLsrI!XPeOK@|V?n>`kNC`8eSFmekELLr|!-wQRltxZnuRedup<7VflowJ+gC z)F}P6lUSsh^B41?=~0*68YA6z63lKG`W$@{GV!cC2FCl0s<7yz6!3JWoBbUDTgpg% z4VNUk%xblMy7PjLF2We*3XY7K*N(*9Yx!_M zjU$&JXLiNxaTzoa&k@NSbzbLJTn$6bu6SPWYx)Zc1Li~Lqj($GuWsA#;zg85eH{yx zz3IIOea3A4QFGmJCfn7N_d$8a77j+T^W}Sr%0XdVLFf&zJ$s^D5Vrc!iV&GXyb5*A z6mG8d*6EDN7a;=dgVjYI--~4@Fe{{fcJ4B|;_Qg~&%6#?I(?X_$S4rDw{=>=8iZS=M^I#EF!m zXn%K_xXWwmm7R40LKXPo6ZzNZfN1-$S6RuVU=JlC|3#Xjo-%ebJvvC4n%IM)Q8NDh zGXd)L;ay_JMozc^mU*Uifnp=#+if>LD*O9MV#@wB1l``z|tlu(7PJqS6rm)0@ zJzP50{0Vpa`_?92oB;*i(?i225a6tZgT+9Dg?vTh)N4OKA~(c8{$8-ZKz=mb@$4IT9g8>;k11WIT+Y=%Z})`y#OJ zK-~rlEy!T%0h!Qo+jjPF2RQz2Z^B;dbvYg2JS`+@D~OWH{2-EEs^BdnuJskh>CKeT z1b;%8dU6QU%i@z?^6Q-{XESe^qRiw`ka+k!d-{c%&lXM}vCX^T=|?|;t6r?N*h-W4 z?o4Hy%BWqW+5=+md#5^8|49zjM zon_Do@rhzZ4XAb}-m|bMH$Vg<;^Bo6A8cfhUQ>|wFk~j(`>1NgD3sTg)He1pWrUj9WZ8R(Wn5Rr zhc&dXvv_m%HrwwHo9l_))NgdVUff%d&@4^$Pc=MDZdZ^xHL$KX^ z7W1{3UJ%>9v$W{Y3>vBvflE-soDj8{`>#F|8Z$EF%lN$NylORTn5JsI4mTMHWd*%- z2sD(RO(H-&i8&Ge)5i12slI5VekYCZ)s8rv&_)194;vKY2m8DIC2{4<&xTM3HHxwT zd(42n)gCJ$O4I|8sJq07#0U7Yk7PjPK&bMdy-5b)OdhSsBo^|IB_H43@&F@tpdJR0 z#~)=UJdP|=)O{0(rVZnjbTtwHV^}&kfLJQP@R6rda;K;O>9J9bnW$BgbzOZ8aO{D8 zPuJ%=Nqg~rdzk-IW0ZC5I%cc;ek5~=lDXl4?gMOQQ!KE5Aq$9qeGFM6jFP;Xy6)%N zjg{q(E6fnF02P3L*tutbHRR-gyYK3g^y9H?GMtIs;ojG zY~3*C>qD)(8jz}89w|xfb7L`^d>AG#%D-uq=qz}(o9kzzrx0LSBX90ykr*5oM+YmoTRWe+Cj6aq^xnWRymLmE>krCpoC9K%2LT0aK0Y< zt@kUUrrj1WL9rmBB8B;WXqg-BztOiUZX-!`*a&-75+!WZ!R0OPiZz?w`Of4q#+(;m z`${Ea6GnTCY3`V2R8w*}knf)*`RA@(8k{Lp4VP;<+ z9O_z0_{3=HcVi z5)&QGEB_&$)mu@)(Z8zuw#>Gc6C>^O-FUZEo;TO1@$>-xu%`v`tMS3V-8R1pb5w&zP%&rAP2*5h z$k{jqReFXCJhJ?-{x(2j5gH_zQ>;#Ec*@bUqF0u}XB09+U-K}+jQd>)k#AOkr6M8x zHyhrfJ`99@Vzr_B@*p@`DxeJ#`jimavZ9ZV%v{mO0!%9$TY(f%_}BU~3R%QxmSdD1 z2Bp45R0C=8qtx-~+oULrzCMHMof!&H<~~>BhOu9t%ti7ERzy&MfeFI`yIK^$C)AW3 zNQRoy0G}{Z0U#b~iYF^Jc^xOlG#4#C=;O>}m0(@{S^B2chkhuBA^ur)c`E;iGC9@z z7%fqif|WXh26-3;GTi8YpXUOSVWuR&C%jb}s5V4o;X~?V>XaR)8gBIQvmh3-xs)|E z8CExUnh>Ngjb^6YLgG<K?>j`V4Zp4G4%h8vUG^ouv)P!AnMkAWurg1zX2{E)hFp5ex ziBTDWLl+>ihx>1Um{+p<{v-zS?fx&Ioeu#9;aON_P4|J-J)gPF2-0?yt=+nHsn^1G z2bM#YbR1hHRbR9Or49U3T&x=1c0%dKX4HI!55MQv`3gt5ENVMAhhgEp@kG2k+qT|<5K~u`9G7x z?eB%b2B#mq)&K}m$lwDv|MU~=Y(D2jO{j*Box$GUn=$90z6O^7F?7pn=P;{r4C8qa zv1n*5N7uIvTn`8$>}(74>Oqk=E7){#pHUFd5XRJ5ObMhqODTa}=V0;+a(7JZR-4<3 zBTvsqRwLh?*ZF)JWsWOkEq7*XMQ!G3Rmkdh7ZbM#v1~?jt((e2y}u}Ky>1qa&Y7m@ zveIzH@?5Gexr79*?sbZGkVS;s1U<7D(%~7HjAmzj$aDYv_FGl5JX@LW8>w=HCDl6W z%?rsr0)bErYJ5G1v&zjr{8=lW)ZYcstgZAuL}!0~8HAcgOm@nJ9cvOOtL@)Fpl2Dr z8876Lt<|1eF88Jx#C*XyGI)C5z_o!Os!t=Xy0$Kj^4fG1pb@16%g z+<)zJ1n1QO78g#$3yHj+(Smv`HW5y_-PP{h2A1UXMG-c%hMvHLbF6t}G>KA)H# z`AWL~>8JUT(iq7;zJr!Aj)AS+n{mRbA3aM+Gj}b#PhHdTM_NkwQm330EC9waM$=slPfxR1vmr!vf~t_M?a%`@`&tdE}ipY-p#Q#zhLK zd9eFC;PjIEAKLkRkO94{rTuNFqKbNUGtaNZRRbax9;|%2WbnGu!44#64RriY5u0O} z05G^e&JB?Wb*8^g)aM`yt|}~QJkKCipFNeyex~P~SFPVEafD(73rncKmm)m~&`O*YUyY9z7tO%ec7z@wWcoOr-ebP z1k+|y?d{>1jLC=s4B2tEhiTtu->WVJno&%%6bG46KuU9D`GEN!C!9chM>zd=cl0+- z^k>4rpkq7_iWGHtBvy$Q`dja2;1ZdYmF6cANU6{v>l1=fSKRpsTRonp@alC%p{bhU z>g+(%-)&_nDQ~#bq5;xo^06RggA&uH4RMVb6wt;oQI+`m_zt>SiI5hXkfEnn6@ZNk zh9KUr1jtt6lBg$O#TAoTRvwUtWeMP3EjnGoRPQppiNF(sX%|Q4@kIjas|WZWXSENO zfF#2yOb;%XO*LeOoAwlf{u7_39$x(w3xT~)2BNJ2l5u4n3a0NkNLT4yT);7fA?1Vt zCz*`hbw-doYa09E!05zcfOT0EOORY``E@D z5{v%@F~&|UfNt@>vrj66W5f>jy+G_8&VB9D0*>N!7_Nr=-x6N?A)M8>1~q(X34sXp zpA%@w&c};L7u*G3;(Qe=LFL}NbTF$|aX#A%P(h`-N=ZRxCvlG$>Klv}jo0MS|UR8qKq-1FokBJmrbTJjQ!k#Is0tY+0c)m4Gp80YzYD zEGXd~ihaihk;?xUknXNH?rssjzaF+l6?HnDQjVP$i=q}{lp_WbOTKKg}HPKW)2sW`L#NvgmaY0^b2Ldk|t{P6{L{>ym;Xgao1PrudBgEMRFb^ zkPJ6v0h^tJ>K@;maHk_|6Z>yFzq@YvDOeO6Ob_?P4Ey>kHiJv`Wlh_MX4fBY36f%^ zV#2t;$Rg&}!Kwifm z;TVZXMxw3~$--{&A8-6vnUZ#s4`Z-zQ#+y7UI8#Hgsc|ompLUc zqlAG!Ti>t{JzYF^5pM925*PUWUvDuYDGKhC4FMx45c`L#V7%V+88@|khLj|V=J9Un zJEcP5qVCzR6p{FK!nIY~TXo)tJ!{>CG;~&u;EPlnNrwJ=5)ke@hJosN!siM$8b2mM zmc&weo-rY{n1+%c`c<{AT3i zjF{p253Ul-)s5A+!8Dp7?viXAdH1+qlY%mK5pp?{pS1t!3qmmDOq2TnoV`F3<>(XK z1=gfH39N_~8O+~({MZX~+QHyB>vtgwK0@uqGkX^eaf$UFHiO#>LB*7@=c0o6`0muj zmH00_F#p)s3E*$A-zP+p2bvXARTg3)Lxh`tf~9X>7!Z^kHV`uE%V9+BiBG=mxj*)M zr%3rn=)>GR`{#zmwD)$3ToLMx++uqsCx(+50Uk*5QJp2c6msxLD&P-y{c|XK6zZl3 z_Fgu8kp|gKVWv`GS!c56FWPO)ZrCCtYh#*yp-ssus)ot>_~UB zyGfjTjz#fXod{^KEQK1~@jN|;SZw5OgH#0wK78Oe4#vV3*|&XPQU z$r~5u8ziT0<#ICrX^<1){mvtaqT9OqlW?wiSu4X#rOC(0uL{Ownb%i1F_G&d>=l51 zx!FEO4_LK+)W^N6UF+fAccyyp{t)TE`;vF@1irbNjcXF8b?yFh zl5UEB>@;wO`~gMF!QB;h<``+f(lxAb_8B$;&vT7)(bXG(7x_5f%AZ5;h#3WjHisX{ zLTSguapAADXMwWZ&jsD0+K!+8#*6z7-(T+QUk>(~!Q|0&!d)PgEw8F6RK;LkB;!HXg79$+l*KU&-fRF|$o+kR4mJ36k9p&>*uS~RhCV+*Y$3U-k%~M)jxCFW zl9;bQ-fx4HPy)*(bhrKL!81M6*@6p5W?z*W`jb;@JKMFwmic{gQPv*) z?I{Fh)y)}(-6uh^I52xKo!LRZV0c*1X)Z(g+GVFN{2n%vD*@&IkVI{R_0;M28M z8vu?M+xVF-&<{l@1g{PA#hnyAq(gudz4WKSFL5YOr3q!|qrxa7z~F~rEJ29VQKgNe z1*L^m9&acg2p7&`u&V%oY|AKF(Xpv=)wf&j#n|;2UYEaUIHLJuTQw$SbrNn+)38PlfV^0<6s>)|hT#IAAS*T)_^_q@I} z0S%tV-HrXOjzkvW!YSbDjdH=g;=4A@whsDB zI8^aX6n=|ab(?!Ay!)CxH(wC(iX~Q@%FEx>C{Hmp98f2ku$Bsw%lk6v50(U@; zu68Z9U&za}O#-Mv^+!V=eyj6S)5oS{My`1MVs)nlnYl_$xU^QId1_jMf7&K8ij)jQ zJ|+~@l)xpV%~Y{P()$`+nBihkjE|3t3t8PoKU3wZ_Eg%0P<>%(A@oW#*8i$X!nfG& z;&&2ZIKlD~*Gff+p3A7QB!}Ei>RGhUUz^UoEpeJ{`2ov>wH!O@1$VW>A#D#{i2z9l z{d)FK9OYxRY#(6NUMO=q^5Ve7R|72%f}ZDlsm0BN&LzyaSHurXV4p5HGf7|Z)}8)g z5J#S6h{-+_U0m$k#+|N{6_8MYactWzWb+1~ea8wX3zX<@O0>pU*q($J{=R&7)P&jg z6Kb)o=HAnC_MP;cIeBq}{gG^0CZzOUJZ|7C-VjE}!?*UtKTcwwF33v^BYC&}Rq)C* zpAJ07-!{`flYX1@n;ZK-=x4)!o(%(1UqulVmes(D z^`_HNfM#umEYy~=zh$9&+?8$4!l(4rr?d#8hS4iks@9w%E4l`BKmhUtvsm1X-mKC3 z>4(u4yS45OgZIOQ;EQ6s`sjNelo!~mLe7gS69TW2WnFwEKcAwioq2mLXV<9CIa#(0`sQpl>vwW`A$D?!2%nt*HEb;Ga=o?92 zHAOICmXHEQ%Cc{m2>dLjPU1J}^w7zilFIxy9nG(OZbYPtW?3KJyv@A7|1A*NiD_v! zTLC}%E4kI*d?$lQBRL==MPsD#FyN0ZSr`;aeQ4C6a2INH9klU~_gCH;G2%8R4EuHb z44Ej^6301>?c06FP3X~xyP{77p`-3td;HKAGf4mZw1qRd6Z^^L#?qaiAKv~px)*jAV^re~beps9m{kJzb6n(oS8uCt#Lnjofg;Rl z=apY)JsV;^dVkzCW)jDrii_WTT`3iKri(xmCC1^AO}Vqt-1B*wwIlBAmE1AmdRtMc zD!fB@mtwHPHyV-^VIVU??*~*{olz-Ub)NCX941BDj_CKZ+QYQ?+``tyhy_7WFXF}_ z?~CVO#LsDYD!&}cph22{PZ*TK?$K^u`E7%{^na89Rm%!jSZs7vI-D zL1POD!1cu56G)*p1gui3-i^JZPX3tI*_Fq&JRwbz*#8LUSiMRWjuu`zD|uk;+X&d@ zuxF5C2{Zp#O?GtOB+R2~tF>MDI(}%p-W=M>1tEY}8E=b_l*WbOO zY9tCPgL3vMEqz)_eWeqmN{qobq_4)XdXJSe6Hj;Eie0??2ZZ?p;*_K8@(&v~1evu- zxQCA2YYvv@qhzamqdi`?{Z{c*7$arCdz4-4G(`O5It%y&8>d{#Y9Vax^FZ99ZK zUdIPpkNhp8uP3T+W4lhvUIYaoY##y6KtxBFoj3&5^@Q(^{677%C#3YJh$p-Ee2M6F ztJAoQv1N0L!|N8XBD(eAYcB#gRaIX7T8U5xXbx~cJSon~YnC zaJYE%zOj9y?E==_B$*9NiAm{~)2Z}t1$$l?qOYct5Ep5HvqFKvuSE7A5YF$K@2>UE zbQOdTNzjD#zS(L>wa2$K-WK!Pc%pY^8To58;^JaXZ}F30wuYl;WWs~rCoo&vrEtUh zTBLMU??yx1#;-weCPZyOJ%Yeb?14z+OXW0L_E+<)(q=;xz74U-Q~R~n*oC;MxyrJo(74r$y2t;x`D~{nhUw`N{Bbc zo`l5kb`Yy;L=&@MTQ~Ml_%V%){mCIj4WC}5q=A_ACx2^by!4w1rVX6H0ifayJsw;; z=+}5kjC?RG*q)^FA;udd?fK$7vU1x>y0w;A-)YbE%l$J%nRRjAIlrItFPgQvJ7Ytb z%HSFnjF2||X&L_g-Q>1{(mholW_-EJmSzsO%*VVVB4)#OAv<(kOIx2H!f)I9#e_Nyjdb$&*1KN^gM}yFIhi%%BWB}7Ke0M{0WY>CxJQUuL<9GW$I>S z8~;QmE{^wS?I`=DyV^l+MozMPWLoFz=uSLu99tiVHdCN>7jRs~vd13`&Gey!!7_+< z6o@25%!eN~+Eki#7iq@#{Hxl7pF0^`N;~p~#tc6HXJP0g5xvK|AuLSwNHVI2_Y-!& z4hemc%vOM5!ySDypyEGe=lAeFbIp`w8FIUcTqUwens>sTIV-jDhrcKGX7XHFXyazb z^DO8=ZgefY6R6&+)c1_i*WoenjtR5@_JU#Ph;4M8fpmznxE9R`=r@-#_y zkD?Muq|*gg7f*BQeI|Np#}Q|NXLJHM6GE{;SJn8ce`V1Gehym~{8c+M<2~=HcCRuk z-v&$8dc8YG+tK}NYVhwdm1iZ&A#r+T<>Ez88)Eq9j+G5h5D(_u{WQdUTOs+QbA(=? z{F6n6UV8D2*lvb)0vDrca$729KG$xO2aH$jWoWl0drlmefYsTswh)`GjMtmR=vEkJ zN$aTp_@@KL%KQ-VDB2ppbZK@X`6cJA5n`g>sbCTvU_xdid!{9gWA|>Mfs6rtHx6s` z_wMt*FgUTBZ@I2C62&zbs?pPvK9TpatkXzqDqe4YTr^nnQg8gWxjKt*s&eOMEp!Qc zG~PT`>xg76Xqh^dKI-Eu#K*VnvEf9qT{L0yNpVj)eVD#kQzGgVRbTB!5nWY=?t!cggiEGBAcWM2xNtW&9 zZB_6RZ}|a87CuEYRYCRJ`Sg+_gBK$_J@*zoWcJJw>eBw?G9WY(Jw~qN|A3MBR^~jm?>k5oGv7z+0jWOox(co@%nya|* zE-2peyX)#@svgwwDMPJ89dT=iO>}@wtNR@NUQ|cJZ};sX(w2uWP4AE5)@A ziJgy_TIZ+T&vG&xPh@Jmt!OJ|zA6C0ZxfF2 z7>aIZqecbmM$lyvDMwg2?Ipo9b)-WL6K_7(X_rmJgdd$-Qc^ywEw4SThChz6*_yu= z{v~a4V|RJtH-GThc2C0Z|JHPl{II-!?B~7cWnRz&dgP*UqoY!iCo&i-xeM}kl?ID* zKTX`w+;z0+MCdGcl{N?xb|tYb%Id=k++k_@(V%bTS&n09`0{S0)|>IH_F;V@_zrxS-dKDDc7+i`nHN8J z;38w69lzAS*WWa+dnVvk(0-KD3%*)TerLH zSCc}Tjc-mR5|1HAL$C1}oue|Qp&M!hmyDUcg)Cz>GXPEyeYf}+s48kIl*pL{{treP BIP(Ai 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 e708b1c023ec8b20f512888fe07c5bd3ff77bb8f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 59203 zcma&O1CT9Y(k9%tZQHhO+qUh#ZQHhO+qmuS+qP|E@9xZO?0h@l{(r>DQ>P;GjjD{w zH}lENr;dU&FbEU?00aa80D$0M0RRB{U*7-#kbjS|qAG&4l5%47zyJ#WrfA#1$1Ctx zf&Z_d{GW=lf^w2#qRJ|CvSJUi(^E3iv~=^Z(zH}F)3Z%V3`@+rNB7gTVU{Bb~90p|f+0(v;nz01EG7yDMX9@S~__vVgv%rS$+?IH+oZ03D5zYrv|^ zC1J)SruYHmCki$jLBlTaE5&dFG9-kq3!^i>^UQL`%gn6)jz54$WDmeYdsBE9;PqZ_ zoGd=P4+|(-u4U1dbAVQrFWoNgNd;0nrghPFbQrJctO>nwDdI`Q^i0XJDUYm|T|RWc zZ3^Qgo_Qk$%Fvjj-G}1NB#ZJqIkh;kX%V{THPqOyiq)d)0+(r9o(qKlSp*hmK#iIY zA^)Vr$-Hz<#SF=0@tL@;dCQsm`V9s1vYNq}K1B)!XSK?=I1)tX+bUV52$YQu*0%fnWEukW>mxkz+%3-S!oguE8u#MGzST8_Dy^#U?fA@S#K$S@9msUiX!gd_ow>08w5)nX{-KxqMOo7d?k2&?Vf z&diGDtZr(0cwPe9z9FAUSD9KC)7(n^lMWuayCfxzy8EZsns%OEblHFSzP=cL6}?J| z0U$H!4S_TVjj<`6dy^2j`V`)mC;cB%* z8{>_%E1^FH!*{>4a7*C1v>~1*@TMcLK{7nEQ!_igZC}ikJ$*<$yHy>7)oy79A~#xE zWavoJOIOC$5b6*q*F_qN1>2#MY)AXVyr$6x4b=$x^*aqF*L?vmj>Mgv+|ITnw_BoW zO?jwHvNy^prH{9$rrik1#fhyU^MpFqF2fYEt(;4`Q&XWOGDH8k6M=%@fics4ajI;st# zCU^r1CK&|jzUhRMv;+W~6N;u<;#DI6cCw-otsc@IsN3MoSD^O`eNflIoR~l4*&-%RBYk@gb^|-JXs&~KuSEmMxB}xSb z@K76cXD=Y|=I&SNC2E+>Zg?R6E%DGCH5J1nU!A|@eX9oS(WPaMm==k2s_ueCqdZw| z&hqHp)47`c{BgwgvY2{xz%OIkY1xDwkw!<0veB#yF4ZKJyabhyyVS`gZepcFIk%e2 zTcrmt2@-8`7i-@5Nz>oQWFuMC_KlroCl(PLSodswHqJ3fn<;gxg9=}~3x_L3P`9Sn zChIf}8vCHvTriz~T2~FamRi?rh?>3bX1j}%bLH+uFX+p&+^aXbOK7clZxdU~6Uxgy z8R=obwO4dL%pmVo*Ktf=lH6hnlz_5k3cG;m8lgaPp~?eD!Yn2kf)tU6PF{kLyn|oI@eQ`F z3IF7~Blqg8-uwUuWZScRKn%c2_}dXB6Dx_&xR*n9M9LXasJhtZdr$vBY!rP{c@=)& z#!?L$2UrkvClwQO>U*fSMs67oSj2mxiJ$t;E|>q%Kh_GzzWWO&3;ufU%2z%ucBU8H z3WIwr$n)cfCXR&>tyB7BcSInK>=ByZA%;cVEJhcg<#6N{aZC4>K41XF>ZgjG`z_u& zGY?;Ad?-sgiOnI`oppF1o1Gurqbi*;#x2>+SSV6|1^G@ooVy@fg?wyf@0Y!UZ4!}nGuLeC^l)6pwkh|oRY`s1Pm$>zZ3u-83T|9 zGaKJIV3_x+u1>cRibsaJpJqhcm%?0-L;2 zitBrdRxNmb0OO2J%Y&Ym(6*`_P3&&5Bw157{o7LFguvxC$4&zTy#U=W*l&(Q2MNO} zfaUwYm{XtILD$3864IA_nn34oVa_g^FRuHL5wdUd)+W-p-iWCKe8m_cMHk+=? zeKX)M?Dt(|{r5t7IenkAXo%&EXIb-i^w+0CX0D=xApC=|Xy(`xy+QG^UyFe z+#J6h_&T5i#sV)hj3D4WN%z;2+jJcZxcI3*CHXGmOF3^)JD5j&wfX)e?-|V0GPuA+ zQFot%aEqGNJJHn$!_}#PaAvQ^{3-Ye7b}rWwrUmX53(|~i0v{}G_sI9uDch_brX&6 zWl5Ndj-AYg(W9CGfQf<6!YmY>Ey)+uYd_JNXH=>|`OH-CDCmcH(0%iD_aLlNHKH z7bcW-^5+QV$jK?R*)wZ>r9t}loM@XN&M-Pw=F#xn(;u3!(3SXXY^@=aoj70;_=QE9 zGghsG3ekq#N||u{4We_25U=y#T*S{4I{++Ku)> zQ!DZW;pVcn>b;&g2;YE#+V`v*Bl&Y-i@X6D*OpNA{G@JAXho&aOk(_j^weW{#3X5Y z%$q_wpb07EYPdmyH(1^09i$ca{O<}7) zRWncXdSPgBE%BM#by!E>tdnc$8RwUJg1*x($6$}ae$e9Knj8gvVZe#bLi!<+&BkFj zg@nOpDneyc+hU9P-;jmOSMN|*H#>^Ez#?;%C3hg_65leSUm;iz)UkW)jX#p)e&S&M z1|a?wDzV5NVnlhRBCd_;F87wp>6c<&nkgvC+!@KGiIqWY4l}=&1w7|r6{oBN8xyzh zG$b#2=RJp_iq6)#t5%yLkKx(0@D=C3w+oiXtSuaQ%I1WIb-eiE$d~!)b@|4XLy!CZ z9p=t=%3ad@Ep+<9003D2KZ5VyP~_n$=;~r&YUg5UZ0KVD&tR1DHy9x)qWtKJp#Kq# zP*8p#W(8JJ_*h_3W}FlvRam?<4Z+-H77^$Lvi+#vmhL9J zJ<1SV45xi;SrO2f=-OB(7#iNA5)x1uNC-yNxUw|!00vcW2PufRm>e~toH;M0Q85MQLWd?3O{i8H+5VkR@l9Dg-ma ze2fZ%>G(u5(k9EHj2L6!;(KZ8%8|*-1V|B#EagbF(rc+5iL_5;Eu)L4Z-V;0HfK4d z*{utLse_rvHZeQ>V5H=f78M3Ntg1BPxFCVD{HbNA6?9*^YIq;B-DJd{Ca2L#)qWP? zvX^NhFmX?CTWw&Ns}lgs;r3i+Bq@y}Ul+U%pzOS0Fcv9~aB(0!>GT0)NO?p=25LjN z2bh>6RhgqD7bQj#k-KOm@JLgMa6>%-ok1WpOe)FS^XOU{c?d5shG(lIn3GiVBxmg`u%-j=)^v&pX1JecJics3&jvPI)mDut52? z3jEA)DM%}BYbxxKrizVYwq?(P&19EXlwD9^-6J+4!}9{ywR9Gk42jjAURAF&EO|~N z)?s>$Da@ikI4|^z0e{r`J8zIs>SpM~Vn^{3fArRu;?+43>lD+^XtUcY1HidJwnR6+ z!;oG2=B6Z_=M%*{z-RaHc(n|1RTKQdNjjV!Pn9lFt^4w|AeN06*j}ZyhqZ^!-=cyGP_ShV1rGxkx8t zB;8`h!S{LD%ot``700d0@Grql(DTt4Awgmi+Yr0@#jbe=2#UkK%rv=OLqF)9D7D1j z!~McAwMYkeaL$~kI~90)5vBhBzWYc3Cj1WI0RS`z000R8-@ET0dA~*r(gSiCJmQMN&4%1D zyVNf0?}sBH8zNbBLn>~(W{d3%@kL_eQ6jEcR{l>C|JK z(R-fA!z|TTRG40|zv}7E@PqCAXP3n`;%|SCQ|ZS%ym$I{`}t3KPL&^l5`3>yah4*6 zifO#{VNz3)?ZL$be;NEaAk9b#{tV?V7 zP|wf5YA*1;s<)9A4~l3BHzG&HH`1xNr#%){4xZ!jq%o=7nN*wMuXlFV{HaiQLJ`5G zBhDi#D(m`Q1pLh@Tq+L;OwuC52RdW7b8}~60WCOK5iYMUad9}7aWBuILb({5=z~YF zt?*Jr5NG+WadM{mDL>GyiByCuR)hd zA=HM?J6l1Xv0Dl+LW@w$OTcEoOda^nFCw*Sy^I@$sSuneMl{4ys)|RY#9&NxW4S)9 zq|%83IpslTLoz~&vTo!Ga@?rj_kw{|k{nv+w&Ku?fyk4Ki4I?);M|5Axm)t+BaE)D zm(`AQ#k^DWrjbuXoJf2{Aj^KT zFb1zMSqxq|vceV+Mf-)$oPflsO$@*A0n0Z!R{&(xh8s}=;t(lIy zv$S8x>m;vQNHuRzoaOo?eiWFe{0;$s`Bc+Osz~}Van${u;g(su`3lJ^TEfo~nERfP z)?aFzpDgnLYiERsKPu|0tq4l2wT)Atr6Qb%m-AUn6HnCue*yWICp7TjW$@sO zm5rm4aTcPQ(rfi7a`xP7cKCFrJD}*&_~xgLyr^-bmsL}y;A5P|al8J3WUoBSjqu%v zxC;mK!g(7r6RRJ852Z~feoC&sD3(6}^5-uLK8o)9{8L_%%rItZK9C){UxB|;G>JbP zsRRtS4-3B*5c+K2kvmgZK8472%l>3cntWUOVHxB|{Ay~aOg5RN;{PJgeVD*H%ac+y!h#wi%o2bF2Ca8IyMyH{>4#{E_8u^@+l-+n=V}Sq?$O z{091@v%Bd*3pk0^2UtiF9Z+(a@wy6 zUdw8J*ze$K#=$48IBi1U%;hmhO>lu!uU;+RS}p&6@rQila7WftH->*A4=5W|Fmtze z)7E}jh@cbmr9iup^i%*(uF%LG&!+Fyl@LFA-}Ca#bxRfDJAiR2dt6644TaYw1Ma79 zt8&DYj31j^5WPNf5P&{)J?WlCe@<3u^78wnd(Ja4^a>{^Tw}W>|Cjt^If|7l^l)^Q zbz|7~CF(k_9~n|h;ysZ+jHzkXf(*O*@5m zLzUmbHp=x!Q|!9NVXyipZ3)^GuIG$k;D)EK!a5=8MFLI_lpf`HPKl=-Ww%z8H_0$j ztJ||IfFG1lE9nmQ0+jPQy zCBdKkjArH@K7jVcMNz);Q(Q^R{d5G?-kk;Uu_IXSyWB)~KGIizZL(^&qF;|1PI7!E zTP`%l)gpX|OFn&)M%txpQ2F!hdA~hX1Cm5)IrdljqzRg!f{mN%G~H1&oqe`5eJCIF zHdD7O;AX-{XEV(a`gBFJ9ews#CVS2y!&>Cm_dm3C8*n3MA*e67(WC?uP@8TXuMroq z{#w$%z@CBIkRM7?}Xib+>hRjy?%G!fiw8! z8(gB+8J~KOU}yO7UGm&1g_MDJ$IXS!`+*b*QW2x)9>K~Y*E&bYMnjl6h!{17_8d!%&9D`a7r&LKZjC<&XOvTRaKJ1 zUY@hl5^R&kZl3lU3njk`3dPzxj$2foOL26r(9zsVF3n_F#v)s5vv3@dgs|lP#eylq62{<-vczqP!RpVBTgI>@O6&sU>W|do17+#OzQ7o5A$ICH z?GqwqnK^n2%LR;$^oZM;)+>$X3s2n}2jZ7CdWIW0lnGK-b#EG01)P@aU`pg}th&J-TrU`tIpb5t((0eu|!u zQz+3ZiOQ^?RxxK4;zs=l8q!-n7X{@jSwK(iqNFiRColuEOg}!7cyZi`iBX4g1pNBj zAPzL?P^Ljhn;1$r8?bc=#n|Ed7wB&oHcw()&*k#SS#h}jO?ZB246EGItsz*;^&tzp zu^YJ0=lwsi`eP_pU8}6JA7MS;9pfD;DsSsLo~ogzMNP70@@;Fm8f0^;>$Z>~}GWRw!W5J3tNX*^2+1f3hz{~rIzJo z6W%J(H!g-eI_J1>0juX$X4Cl6i+3wbc~k146UIX&G22}WE>0ga#WLsn9tY(&29zBvH1$`iWtTe zG2jYl@P!P)eb<5DsR72BdI7-zP&cZNI{7q3e@?N8IKc4DE#UVr->|-ryuJXk^u^>4 z$3wE~=q390;XuOQP~TNoDR?#|NSPJ%sTMInA6*rJ%go|=YjGe!B>z6u$IhgQSwoV* zjy3F2#I>uK{42{&IqP59)Y(1*Z>>#W8rCf4_eVsH)`v!P#^;BgzKDR`ARGEZzkNX+ zJUQu=*-ol=Xqqt5=`=pA@BIn@6a9G8C{c&`i^(i+BxQO9?YZ3iu%$$da&Kb?2kCCo zo7t$UpSFWqmydXf@l3bVJ=%K?SSw)|?srhJ-1ZdFu*5QhL$~-IQS!K1s@XzAtv6*Y zl8@(5BlWYLt1yAWy?rMD&bwze8bC3-GfNH=p zynNFCdxyX?K&G(ZZ)afguQ2|r;XoV^=^(;Cku#qYn4Lus`UeKt6rAlFo_rU`|Rq z&G?~iWMBio<78of-2X(ZYHx~=U0Vz4btyXkctMKdc9UM!vYr~B-(>)(Hc|D zMzkN4!PBg%tZoh+=Gba!0++d193gbMk2&krfDgcbx0jI92cq?FFESVg0D$>F+bil} zY~$)|>1HZsX=5sAZ2WgPB5P=8X#TI+NQ(M~GqyVB53c6IdX=k>Wu@A0Svf5#?uHaF zsYn|koIi3$(%GZ2+G+7Fv^lHTb#5b8sAHSTnL^qWZLM<(1|9|QFw9pnRU{svj}_Al zL)b9>fN{QiA($8peNEJyy`(a{&uh-T4_kdZFIVsKKVM(?05}76EEz?#W za^fiZOAd14IJ4zLX-n7Lq0qlQ^lW8Cvz4UKkV9~P}>sq0?xD3vg+$4vLm~C(+ zM{-3Z#qnZ09bJ>}j?6ry^h+@PfaD7*jZxBEY4)UG&daWb??6)TP+|3#Z&?GL?1i+280CFsE|vIXQbm| zM}Pk!U`U5NsNbyKzkrul-DzwB{X?n3E6?TUHr{M&+R*2%yOiXdW-_2Yd6?38M9Vy^ z*lE%gA{wwoSR~vN0=no}tP2Ul5Gk5M(Xq`$nw#ndFk`tcpd5A=Idue`XZ!FS>Q zG^0w#>P4pPG+*NC9gLP4x2m=cKP}YuS!l^?sHSFftZy{4CoQrb_ z^20(NnG`wAhMI=eq)SsIE~&Gp9Ne0nD4%Xiu|0Fj1UFk?6avDqjdXz{O1nKao*46y zT8~iA%Exu=G#{x=KD;_C&M+Zx4+n`sHT>^>=-1YM;H<72k>$py1?F3#T1*ef9mLZw z5naLQr?n7K;2l+{_uIw*_1nsTn~I|kkCgrn;|G~##hM;9l7Jy$yJfmk+&}W@JeKcF zx@@Woiz8qdi|D%aH3XTx5*wDlbs?dC1_nrFpm^QbG@wM=i2?Zg;$VK!c^Dp8<}BTI zyRhAq@#%2pGV49*Y5_mV4+OICP|%I(dQ7x=6Ob}>EjnB_-_18*xrY?b%-yEDT(wrO z9RY2QT0`_OpGfMObKHV;QLVnrK%mc?$WAdIT`kJQT^n%GuzE7|9@k3ci5fYOh(287 zuIbg!GB3xLg$YN=n)^pHGB0jH+_iIiC=nUcD;G6LuJsjn2VI1cyZx=a?ShCsF==QK z;q~*m&}L<-cb+mDDXzvvrRsybcgQ;Vg21P(uLv5I+eGc7o7tc6`;OA9{soHFOz zT~2?>Ts}gprIX$wRBb4yE>ot<8+*Bv`qbSDv*VtRi|cyWS>)Fjs>fkNOH-+PX&4(~ z&)T8Zam2L6puQl?;5zg9h<}k4#|yH9czHw;1jw-pwBM*O2hUR6yvHATrI%^mvs9q_ z&ccT0>f#eDG<^WG^q@oVqlJrhxH)dcq2cty@l3~|5#UDdExyXUmLQ}f4#;6fI{f^t zDCsgIJ~0`af%YR%Ma5VQq-p21k`vaBu6WE?66+5=XUd%Ay%D$irN>5LhluRWt7 zov-=f>QbMk*G##&DTQyou$s7UqjjW@k6=!I@!k+S{pP8R(2=e@io;N8E`EOB;OGoI zw6Q+{X1_I{OO0HPpBz!X!@`5YQ2)t{+!?M_iH25X(d~-Zx~cXnS9z>u?+If|iNJbx zyFU2d1!ITX64D|lE0Z{dLRqL1Ajj=CCMfC4lD3&mYR_R_VZ>_7_~|<^o*%_&jevU+ zQ4|qzci=0}Jydw|LXLCrOl1_P6Xf@c0$ieK2^7@A9UbF{@V_0p%lqW|L?5k>bVM8|p5v&2g;~r>B8uo<4N+`B zH{J)h;SYiIVx@#jI&p-v3dwL5QNV1oxPr8J%ooezTnLW>i*3Isb49%5i!&ac_dEXv zvXmVUck^QHmyrF8>CGXijC_R-y(Qr{3Zt~EmW)-nC!tiH`wlw5D*W7Pip;T?&j%kX z6DkZX4&}iw>hE(boLyjOoupf6JpvBG8}jIh!!VhnD0>}KSMMo{1#uU6kiFcA04~|7 zVO8eI&x1`g4CZ<2cYUI(n#wz2MtVFHx47yE5eL~8bot~>EHbevSt}LLMQX?odD{Ux zJMnam{d)W4da{l7&y-JrgiU~qY3$~}_F#G7|MxT)e;G{U`In&?`j<5D->}cb{}{T(4DF0BOk-=1195KB-E*o@c?`>y#4=dMtYtSY=&L{!TAjFVcq0y@AH`vH! z$41+u!Ld&}F^COPgL(EE{0X7LY&%D7-(?!kjFF7=qw<;`V{nwWBq<)1QiGJgUc^Vz ztMUlq1bZqKn17|6x6iAHbWc~l1HcmAxr%$Puv!znW)!JiukwIrqQ00|H$Z)OmGG@= zv%A8*4cq}(?qn4rN6o`$Y))(MyXr8R<2S^J+v(wmFmtac!%VOfN?&(8Nr!T@kV`N; z*Q33V3t`^rN&aBiHet)18wy{*wi1=W!B%B-Q6}SCrUl$~Hl{@!95ydml@FK8P=u4s z4e*7gV2s=YxEvskw2Ju!2%{8h01rx-3`NCPc(O zH&J0VH5etNB2KY6k4R@2Wvl^Ck$MoR3=)|SEclT2ccJ!RI9Nuter7u9@;sWf-%um;GfI!=eEIQ2l2p_YWUd{|6EG ze{yO6;lMc>;2tPrsNdi@&1K6(1;|$xe8vLgiouj%QD%gYk`4p{Ktv9|j+!OF-P?@p z;}SV|oIK)iwlBs+`ROXkhd&NK zzo__r!B>tOXpBJMDcv!Mq54P+n4(@dijL^EpO1wdg~q+!DT3lB<>9AANSe!T1XgC=J^)IP0XEZ()_vpu!!3HQyJhwh?r`Ae%Yr~b% zO*NY9t9#qWa@GCPYOF9aron7thfWT`eujS4`t2uG6)~JRTI;f(ZuoRQwjZjp5Pg34 z)rp$)Kr?R+KdJ;IO;pM{$6|2y=k_siqvp%)2||cHTe|b5Ht8&A{wazGNca zX$Ol?H)E_R@SDi~4{d-|8nGFhZPW;Cts1;08TwUvLLv&_2$O6Vt=M)X;g%HUr$&06 zISZb(6)Q3%?;3r~*3~USIg=HcJhFtHhIV(siOwV&QkQe#J%H9&E21!C*d@ln3E@J* zVqRO^<)V^ky-R|%{(9`l-(JXq9J)1r$`uQ8a}$vr9E^nNiI*thK8=&UZ0dsFN_eSl z(q~lnD?EymWLsNa3|1{CRPW60>DSkY9YQ;$4o3W7Ms&@&lv9eH!tk~N&dhqX&>K@} zi1g~GqglxkZ5pEFkllJ)Ta1I^c&Bt6#r(QLQ02yHTaJB~- zCcE=5tmi`UA>@P=1LBfBiqk)HB4t8D?02;9eXj~kVPwv?m{5&!&TFYhu>3=_ zsGmYZ^mo*-j69-42y&Jj0cBLLEulNRZ9vXE)8~mt9C#;tZs;=#M=1*hebkS;7(aGf zcs7zH(I8Eui9UU4L--))yy`&d&$In&VA2?DAEss4LAPCLd>-$i?lpXvn!gu^JJ$(DoUlc6wE98VLZ*z`QGQov5l4Fm_h?V-;mHLYDVOwKz7>e4+%AzeO>P6v}ndPW| zM>m#6Tnp7K?0mbK=>gV}=@k*0Mr_PVAgGMu$j+pWxzq4MAa&jpCDU&-5eH27Iz>m^ zax1?*HhG%pJ((tkR(V(O(L%7v7L%!_X->IjS3H5kuXQT2!ow(;%FDE>16&3r){!ex zhf==oJ!}YU89C9@mfDq!P3S4yx$aGB?rbtVH?sHpg?J5C->!_FHM%Hl3#D4eplxzQ zRA+<@LD%LKSkTk2NyWCg7u=$%F#;SIL44~S_OGR}JqX}X+=bc@swpiClB`Zbz|f!4 z7Ysah7OkR8liXfI`}IIwtEoL}(URrGe;IM8%{>b1SsqXh)~w}P>yiFRaE>}rEnNkT z!HXZUtxUp1NmFm)Dm@-{FI^aRQqpSkz}ZSyKR%Y}YHNzBk)ZIp} zMtS=aMvkgWKm9&oTcU0?S|L~CDqA+sHpOxwnswF-fEG)cXCzUR?ps@tZa$=O)=L+5 zf%m58cq8g_o}3?Bhh+c!w4(7AjxwQ3>WnVi<{{38g7yFboo>q|+7qs<$8CPXUFAN< zG&}BHbbyQ5n|qqSr?U~GY{@GJ{(Jny{bMaOG{|IkUj7tj^9pa9|FB_<+KHLxSxR;@ zHpS$4V)PP+tx}22fWx(Ku9y+}Ap;VZqD0AZW4gCDTPCG=zgJmF{|x;(rvdM|2|9a}cex6xrMkERnkE;}jvU-kmzd%_J50$M`lIPCKf+^*zL=@LW`1SaEc%=m zQ+lT06Gw+wVwvQ9fZ~#qd430v2HndFsBa9WjD0P}K(rZYdAt^5WQIvb%D^Q|pkVE^ zte$&#~zmULFACGfS#g=2OLOnIf2Of-k!(BIHjs77nr!5Q1*I9 z1%?=~#Oss!rV~?-6Gm~BWJiA4mJ5TY&iPm_$)H1_rTltuU1F3I(qTQ^U$S>%$l z)Wx1}R?ij0idp@8w-p!Oz{&*W;v*IA;JFHA9%nUvVDy7Q8woheC#|8QuDZb-L_5@R zOqHwrh|mVL9b=+$nJxM`3eE{O$sCt$UK^2@L$R(r^-_+z?lOo+me-VW=Zw z-Bn>$4ovfWd%SPY`ab-u9{INc*k2h+yH%toDHIyqQ zO68=u`N}RIIs7lsn1D){)~%>ByF<>i@qFb<-axvu(Z+6t7v<^z&gm9McRB~BIaDn$ z#xSGT!rzgad8o>~kyj#h1?7g96tOcCJniQ+*#=b7wPio>|6a1Z?_(TS{)KrPe}(8j z!#&A=k(&Pj^F;r)CI=Z{LVu>uj!_W1q4b`N1}E(i%;BWjbEcnD=mv$FL$l?zS6bW!{$7j1GR5ocn94P2u{ z70tAAcpqtQo<@cXw~@i-@6B23;317|l~S>CB?hR5qJ%J3EFgyBdJd^fHZu7AzHF(BQ!tyAz^L0`X z23S4Fe{2X$W0$zu9gm%rg~A>ijaE#GlYlrF9$ds^QtaszE#4M(OLVP2O-;XdT(XIC zatwzF*)1c+t~c{L=fMG8Z=k5lv>U0;C{caN1NItnuSMp)6G3mbahu>E#sj&oy94KC zpH}8oEw{G@N3pvHhp{^-YaZeH;K+T_1AUv;IKD<=mv^&Ueegrb!yf`4VlRl$M?wsl zZyFol(2|_QM`e_2lYSABpKR{{NlxlDSYQNkS;J66aT#MSiTx~;tUmvs-b*CrR4w=f z8+0;*th6kfZ3|5!Icx3RV11sp=?`0Jy3Fs0N4GZQMN=8HmT6%x9@{Dza)k}UwL6JT zHRDh;%!XwXr6yuuy`4;Xsn0zlR$k%r%9abS1;_v?`HX_hI|+EibVnlyE@3aL5vhQq zlIG?tN^w@0(v9M*&L+{_+RQZw=o|&BRPGB>e5=ys7H`nc8nx)|-g;s7mRc7hg{GJC zAe^vCIJhajmm7C6g! zL&!WAQ~5d_5)00?w_*|*H>3$loHrvFbitw#WvLB!JASO?#5Ig5$Ys10n>e4|3d;tS zELJ0|R4n3Az(Fl3-r^QiV_C;)lQ1_CW{5bKS15U|E9?ZgLec@%kXr84>5jV2a5v=w z?pB1GPdxD$IQL4)G||B_lI+A=08MUFFR4MxfGOu07vfIm+j=z9tp~5i_6jb`tR>qV z$#`=BQ*jpCjm$F0+F)L%xRlnS%#&gro6PiRfu^l!EVan|r3y}AHJQOORGx4~ z&<)3=K-tx518DZyp%|!EqpU!+X3Et7n2AaC5(AtrkW>_57i}$eqs$rupubg0a1+WO zGHZKLN2L0D;ab%{_S1Plm|hx8R?O14*w*f&2&bB050n!R2by zw!@XOQx$SqZ5I<(Qu$V6g>o#A!JVwErWv#(Pjx=KeS0@hxr4?13zj#oWwPS(7Ro|v z>Mp@Kmxo79q|}!5qtX2-O@U&&@6s~!I&)1WQIl?lTnh6UdKT_1R640S4~f=_xoN3- zI+O)$R@RjV$F=>Ti7BlnG1-cFKCC(t|Qjm{SalS~V-tX#+2ekRhwmN zZr`8{QF6y~Z!D|{=1*2D-JUa<(1Z=;!Ei!KiRNH?o{p5o3crFF=_pX9O-YyJchr$~ zRC`+G+8kx~fD2k*ZIiiIGR<8r&M@3H?%JVOfE>)})7ScOd&?OjgAGT@WVNSCZ8N(p zuQG~76GE3%(%h1*vUXg$vH{ua0b`sQ4f0*y=u~lgyb^!#CcPJa2mkSEHGLsnO^kb$ zru5_l#nu=Y{rSMWiYx?nO{8I!gH+?wEj~UM?IrG}E|bRIBUM>UlY<`T1EHpRr36vv zBi&dG8oxS|J$!zoaq{+JpJy+O^W(nt*|#g32bd&K^w-t>!Vu9N!k9eA8r!Xc{utY> zg9aZ(D2E0gL#W0MdjwES-7~Wa8iubPrd?8-$C4BP?*wok&O8+ykOx{P=Izx+G~hM8 z*9?BYz!T8~dzcZr#ux8kS7u7r@A#DogBH8km8Ry4slyie^n|GrTbO|cLhpqgMdsjX zJ_LdmM#I&4LqqsOUIXK8gW;V0B(7^$y#h3h>J0k^WJfAMeYek%Y-Dcb_+0zPJez!GM zAmJ1u;*rK=FNM0Nf}Y!!P9c4)HIkMnq^b;JFd!S3?_Qi2G#LIQ)TF|iHl~WKK6JmK zbv7rPE6VkYr_%_BT}CK8h=?%pk@3cz(UrZ{@h40%XgThP*-Oeo`T0eq9 zA8BnWZKzCy5e&&_GEsU4*;_k}(8l_&al5K-V*BFM=O~;MgRkYsOs%9eOY6s6AtE*<7GQAR2ulC3RAJrG_P1iQK5Z~&B z&f8X<>yJV6)oDGIlS$Y*D^Rj(cszTy5c81a5IwBr`BtnC6_e`ArI8CaTX_%rx7;cn zR-0?J_LFg*?(#n~G8cXut(1nVF0Oka$A$1FGcERU<^ggx;p@CZc?3UB41RY+wLS`LWFNSs~YP zuw1@DNN3lTd|jDL7gjBsd9}wIw}4xT2+8dBQzI00m<@?c2L%>}QLfK5%r!a-iII`p zX@`VEUH)uj^$;7jVUYdADQ2k*!1O3WdfgF?OMtUXNpQ1}QINamBTKDuv19^{$`8A1 zeq%q*O0mi@(%sZU>Xdb0Ru96CFqk9-L3pzLVsMQ`Xpa~N6CR{9Rm2)A|CI21L(%GW zh&)Y$BNHa=FD+=mBw3{qTgw)j0b!Eahs!rZnpu)z!!E$*eXE~##yaXz`KE5(nQM`s zD!$vW9XH)iMxu9R>r$VlLk9oIR%HxpUiW=BK@4U)|1WNQ=mz9a z^!KkO=>GaJ!GBXm{KJj^;kh-MkUlEQ%lza`-G&}C5y1>La1sR6hT=d*NeCnuK%_LV zOXt$}iP6(YJKc9j-Fxq~*ItVUqljQ8?oaysB-EYtFQp9oxZ|5m0^Hq(qV!S+hq#g( z?|i*H2MIr^Kxgz+3vIljQ*Feejy6S4v~jKEPTF~Qhq!(ms5>NGtRgO5vfPPc4Z^AM zTj!`5xEreIN)vaNxa|q6qWdg>+T`Ol0Uz)ckXBXEGvPNEL3R8hB3=C5`@=SYgAju1 z!)UBr{2~=~xa{b8>x2@C7weRAEuatC)3pkRhT#pMPTpSbA|tan%U7NGMvzmF?c!V8 z=pEWxbdXbTAGtWTyI?Fml%lEr-^AE}w#l(<7OIw;ctw}imYax&vR4UYNJZK6P7ZOd zP87XfhnUHxCUHhM@b*NbTi#(-8|wcv%3BGNs#zRCVV(W?1Qj6^PPQa<{yaBwZ`+<`w|;rqUY_C z&AeyKwwf*q#OW-F()lir=T^<^wjK65Lif$puuU5+tk$;e_EJ;Lu+pH>=-8=PDhkBg z8cWt%@$Sc#C6F$Vd+0507;{OOyT7Hs%nKS88q-W!$f~9*WGBpHGgNp}=C*7!RiZ5s zn1L_DbKF@B8kwhDiLKRB@lsXVVLK|ph=w%_`#owlf@s@V(pa`GY$8h%;-#h@TsO|Y8V=n@*!Rog7<7Cid%apR|x zOjhHCyfbIt%+*PCveTEcuiDi%Wx;O;+K=W?OFUV%)%~6;gl?<0%)?snDDqIvkHF{ zyI02)+lI9ov42^hL>ZRrh*HhjF9B$A@=H94iaBESBF=eC_KT$8A@uB^6$~o?3Wm5t1OIaqF^~><2?4e3c&)@wKn9bD? zoeCs;H>b8DL^F&>Xw-xjZEUFFTv>JD^O#1E#)CMBaG4DX9bD(Wtc8Rzq}9soQ8`jf zeSnHOL}<+WVSKp4kkq&?SbETjq6yr@4%SAqOG=9E(3YeLG9dtV+8vmzq+6PFPk{L; z(&d++iu=^F%b+ea$i2UeTC{R*0Isk;vFK!no<;L+(`y`3&H-~VTdKROkdyowo1iqR zbVW(3`+(PQ2>TKY>N!jGmGo7oeoB8O|P_!Ic@ zZ^;3dnuXo;WJ?S+)%P>{Hcg!Jz#2SI(s&dY4QAy_vRlmOh)QHvs_7c&zkJCmJGVvV zX;Mtb>QE+xp`KyciG$Cn*0?AK%-a|=o!+7x&&yzHQOS>8=B*R=niSnta^Pxp1`=md z#;$pS$4WCT?mbiCYU?FcHGZ#)kHVJTTBt^%XE(Q};aaO=Zik0UgLcc0I(tUpt(>|& zcxB_|fxCF7>&~5eJ=Dpn&5Aj{A^cV^^}(7w#p;HG&Q)EaN~~EqrE1qKrMAc&WXIE;>@<&)5;gD2?={Xf@Mvn@OJKw=8Mgn z!JUFMwD+s==JpjhroT&d{$kQAy%+d`a*XxDEVxy3`NHzmITrE`o!;5ClXNPb4t*8P zzAivdr{j_v!=9!^?T3y?gzmqDWX6mkzhIzJ-3S{T5bcCFMr&RPDryMcdwbBuZbsgN zGrp@^i?rcfN7v0NKGzDPGE#4yszxu=I_`MI%Z|10nFjU-UjQXXA?k8Pk|OE<(?ae) zE%vG#eZAlj*E7_3dx#Zz4kMLj>H^;}33UAankJiDy5ZvEhrjr`!9eMD8COp}U*hP+ zF}KIYx@pkccIgyxFm#LNw~G&`;o&5)2`5aogs`1~7cMZQ7zj!%L4E`2yzlQN6REX20&O<9 zKV6fyr)TScJPPzNTC2gL+0x#=u>(({{D7j)c-%tvqls3#Y?Z1m zV5WUE)zdJ{$p>yX;^P!UcXP?UD~YM;IRa#Rs5~l+*$&nO(;Ers`G=0D!twR(0GF@c zHl9E5DQI}Oz74n zfKP>&$q0($T4y$6w(p=ERAFh+>n%iaeRA%!T%<^+pg?M)@ucY<&59$x9M#n+V&>}=nO9wCV{O~lg&v#+jcUj(tQ z`0u1YH)-`U$15a{pBkGyPL0THv1P|4e@pf@3IBZS4dVJPo#H>pWq%Lr0YS-SeWash z8R7=jb28KPMI|_lo#GEO|5B?N_e``H*23{~a!AmUJ+fb4HX-%QI@lSEUxKlGV7z7Q zSKw@-TR>@1RL%w{x}dW#k1NgW+q4yt2Xf1J62Bx*O^WG8OJ|FqI4&@d3_o8Id@*)4 zYrk=>@!wv~mh7YWv*bZhxqSmFh2Xq)o=m;%n$I?GSz49l1$xRpPu_^N(vZ>*>Z<04 z2+rP70oM=NDysd!@fQdM2OcyT?3T^Eb@lIC-UG=Bw{BjQ&P`KCv$AcJ;?`vdZ4){d z&gkoUK{$!$$K`3*O-jyM1~p-7T*qb)Ys>Myt^;#1&a%O@x8A+E>! zY8=eD`ZG)LVagDLBeHg>=atOG?Kr%h4B%E6m@J^C+U|y)XX@f z8oyJDW|9g=<#f<{JRr{y#~euMnv)`7j=%cHWLc}ngjq~7k**6%4u>Px&W%4D94(r* z+akunK}O0DC2A%Xo9jyF;DobX?!1I(7%}@7F>i%&nk*LMO)bMGg2N+1iqtg+r(70q zF5{Msgsm5GS7DT`kBsjMvOrkx&|EU!{{~gL4d2MWrAT=KBQ-^zQCUq{5PD1orxlIL zq;CvlWx#f1NWvh`hg011I%?T_s!e38l*lWVt|~z-PO4~~1g)SrJ|>*tXh=QfXT)%( z+ex+inPvD&O4Ur;JGz>$sUOnWdpSLcm1X%aQDw4{dB!cnj`^muI$CJ2%p&-kULVCE z>$eMR36kN$wCPR+OFDM3-U(VOrp9k3)lI&YVFqd;Kpz~K)@Fa&FRw}L(SoD z9B4a+hQzZT-BnVltst&=kq6Y(f^S4hIGNKYBgMxGJ^;2yrO}P3;r)(-I-CZ)26Y6? z&rzHI_1GCvGkgy-t1E;r^3Le30|%$ebDRu2+gdLG)r=A~Qz`}~&L@aGJ{}vVs_GE* zVUjFnzHiXfKQbpv&bR&}l2bzIjAooB)=-XNcYmrGmBh(&iu@o!^hn0^#}m2yZZUK8 zufVm7Gq0y`Mj;9b>`c?&PZkU0j4>IL=UL&-Lp3j&47B5pAW4JceG{!XCA)kT<%2nqCxj<)uy6XR_uws~>_MEKPOpAQ!H zkn>FKh)<9DwwS*|Y(q?$^N!6(51O0 z^JM~Ax{AI1Oj$fs-S5d4T7Z_i1?{%0SsIuQ&r8#(JA=2iLcTN+?>wOL532%&dMYkT z*T5xepC+V6zxhS@vNbMoi|i)=rpli@R9~P!39tWbSSb904ekv7D#quKbgFEMTb48P zuq(VJ+&L8aWU(_FCD$3^uD!YM%O^K(dvy~Wm2hUuh6bD|#(I39Xt>N1Y{ZqXL`Fg6 zKQ?T2htHN!(Bx;tV2bfTtIj7e)liN-29s1kew>v(D^@)#v;}C4-G=7x#;-dM4yRWm zyY`cS21ulzMK{PoaQ6xChEZ}o_#}X-o}<&0)$1#3we?+QeLt;aVCjeA)hn!}UaKt< zat1fHEx13y-rXNMvpUUmCVzocPmN~-Y4(YJvQ#db)4|%B!rBsgAe+*yor~}FrNH08 z3V!97S}D7d$zbSD{$z;@IYMxM6aHdypIuS*pr_U6;#Y!_?0i|&yU*@16l z*dcMqDQgfNBf}?quiu4e>H)yTVfsp#f+Du0@=Kc41QockXkCkvu>FBd6Q+@FL!(Yx z2`YuX#eMEiLEDhp+9uFqME_E^faV&~9qjBHJkIp~%$x^bN=N)K@kvSVEMdDuzA0sn z88CBG?`RX1@#hQNd`o^V{37)!w|nA)QfiYBE^m=yQKv-fQF+UCMcuEe1d4BH7$?>b zJl-r9@0^Ie=)guO1vOd=i$_4sz>y3x^R7n4ED!5oXL3@5**h(xr%Hv)_gILarO46q+MaDOF%ChaymKoI6JU5Pg;7#2n9-18|S1;AK+ zgsn6;k6-%!QD>D?cFy}8F;r@z8H9xN1jsOBw2vQONVqBVEbkiNUqgw~*!^##ht>w0 zUOykwH=$LwX2j&nLy=@{hr)2O&-wm-NyjW7n~Zs9UlH;P7iP3 zI}S(r0YFVYacnKH(+{*)Tbw)@;6>%=&Th=+Z6NHo_tR|JCI8TJiXv2N7ei7M^Q+RM z?9o`meH$5Yi;@9XaNR#jIK^&{N|DYNNbtdb)XW1Lv2k{E>;?F`#Pq|&_;gm~&~Zc9 zf+6ZE%{x4|{YdtE?a^gKyzr}dA>OxQv+pq|@IXL%WS0CiX!V zm$fCePA%lU{%pTKD7|5NJHeXg=I0jL@$tOF@K*MI$)f?om)D63K*M|r`gb9edD1~Y zc|w7N)Y%do7=0{RC|AziW7#am$)9jciRJ?IWl9PE{G3U+$%FcyKs_0Cgq`=K3@ttV z9g;M!3z~f_?P%y3-ph%vBMeS@p7P&Ea8M@97+%XEj*(1E6vHj==d zjsoviB>j^$_^OI_DEPvFkVo(BGRo%cJeD){6Uckei=~1}>sp299|IRjhXe)%?uP0I zF5+>?0#Ye}T^Y$u_rc4=lPcq4K^D(TZG-w30-YiEM=dcK+4#o*>lJ8&JLi+3UcpZk z!^?95S^C0ja^jwP`|{<+3cBVog$(mRdQmadS+Vh~z zS@|P}=|z3P6uS+&@QsMp0no9Od&27O&14zHXGAOEy zh~OKpymK5C%;LLb467@KgIiVwYbYd6wFxI{0-~MOGfTq$nBTB!{SrWmL9Hs}C&l&l#m?s*{tA?BHS4mVKHAVMqm63H<|c5n0~k)-kbg zXidai&9ZUy0~WFYYKT;oe~rytRk?)r8bptITsWj(@HLI;@=v5|XUnSls7$uaxFRL+ zRVMGuL3w}NbV1`^=Pw*0?>bm8+xfeY(1PikW*PB>>Tq(FR`91N0c2&>lL2sZo5=VD zQY{>7dh_TX98L2)n{2OV=T10~*YzX27i2Q7W86M4$?gZIXZaBq#sA*{PH8){|GUi;oM>e?ua7eF4WFuFYZSG| zze?srg|5Ti8Og{O zeFxuw9!U+zhyk?@w zjsA6(oKD=Ka;A>Ca)oPORxK+kxH#O@zhC!!XS4@=swnuMk>t+JmLmFiE^1aX3f<)D@`%K0FGK^gg1a1j>zi z2KhV>sjU7AX3F$SEqrXSC}fRx64GDoc%!u2Yag68Lw@w9v;xOONf@o)Lc|Uh3<21ctTYu-mFZuHk*+R{GjXHIGq3p)tFtQp%TYqD=j1&y)>@zxoxUJ!G@ zgI0XKmP6MNzw>nRxK$-Gbzs}dyfFzt>#5;f6oR27ql!%+{tr+(`(>%51|k`ML} zY4eE)Lxq|JMas(;JibNQds1bUB&r}ydMQXBY4x(^&fY_&LlQC)3hylc$~8&~|06-D z#T+%66rYbHX%^KuqJED_wuGB+=h`nWA!>1n0)3wZrBG3%`b^Ozv6__dNa@%V14|!D zQ?o$z5u0^8`giv%qE!BzZ!3j;BlDlJDk)h@9{nSQeEk!z9RGW) z${RSF3phEM*ce*>Xdp}585vj$|40=&S{S-GTiE?Op*vY&Lvr9}BO$XWy80IF+6@%n z5*2ueT_g@ofP#u5pxb7n*fv^Xtt7&?SRc{*2Ka-*!BuOpf}neHGCiHy$@Ka1^Dint z;DkmIL$-e)rj4o2WQV%Gy;Xg(_Bh#qeOsTM2f@KEe~4kJ8kNLQ+;(!j^bgJMcNhvklP5Z6I+9Fq@c&D~8Fb-4rmDT!MB5QC{Dsb;BharP*O;SF4& zc$wj-7Oep7#$WZN!1nznc@Vb<_Dn%ga-O#J(l=OGB`dy=Sy&$(5-n3zzu%d7E#^8`T@}V+5B;PP8J14#4cCPw-SQTdGa2gWL0*zKM z#DfSXs_iWOMt)0*+Y>Lkd=LlyoHjublNLefhKBv@JoC>P7N1_#> zv=mLWe96%EY;!ZGSQDbZWb#;tzqAGgx~uk+-$+2_8U`!ypbwXl z^2E-FkM1?lY@yt8=J3%QK+xaZ6ok=-y%=KXCD^0r!5vUneW>95PzCkOPO*t}p$;-> ze5j-BLT_;)cZQzR2CEsm@rU7GZfFtdp*a|g4wDr%8?2QkIGasRfDWT-Dvy*U{?IHT z*}wGnzdlSptl#ZF^sf)KT|BJs&kLG91^A6ls{CzFprZ6-Y!V0Xysh%9p%iMd7HLsS zN+^Un$tDV)T@i!v?3o0Fsx2qI(AX_$dDkBzQ@fRM%n zRXk6hb9Py#JXUs+7)w@eo;g%QQ95Yq!K_d=z{0dGS+pToEI6=Bo8+{k$7&Z zo4>PH(`ce8E-Ps&uv`NQ;U$%t;w~|@E3WVOCi~R4oj5wP?%<*1C%}Jq%a^q~T7u>K zML5AKfQDv6>PuT`{SrKHRAF+^&edg6+5R_#H?Lz3iGoWo#PCEd0DS;)2U({{X#zU^ zw_xv{4x7|t!S)>44J;KfA|DC?;uQ($l+5Vp7oeqf7{GBF9356nx|&B~gs+@N^gSdd zvb*>&W)|u#F{Z_b`f#GVtQ`pYv3#||N{xj1NgB<#=Odt6{eB%#9RLt5v zIi|0u70`#ai}9fJjKv7dE!9ZrOIX!3{$z_K5FBd-Kp-&e4(J$LD-)NMTp^_pB`RT; zftVVlK2g@+1Ahv2$D){@Y#cL#dUj9*&%#6 zd2m9{1NYp>)6=oAvqdCn5#cx{AJ%S8skUgMglu2*IAtd+z1>B&`MuEAS(D(<6X#Lj z?f4CFx$)M&$=7*>9v1ER4b6!SIz-m0e{o0BfkySREchp?WdVPpQCh!q$t>?rL!&Jg zd#heM;&~A}VEm8Dvy&P|J*eAV&w!&Nx6HFV&B8jJFVTmgLaswn!cx$&%JbTsloz!3 zMEz1d`k==`Ueub_JAy_&`!ogbwx27^ZXgFNAbx=g_I~5nO^r)}&myw~+yY*cJl4$I znNJ32M&K=0(2Dj_>@39`3=FX!v3nZHno_@q^!y}%(yw0PqOo=);6Y@&ylVe>nMOZ~ zd>j#QQSBn3oaWd;qy$&5(5H$Ayi)0haAYO6TH>FR?rhqHmNOO+(})NB zLI@B@v0)eq!ug`>G<@htRlp3n!EpU|n+G+AvXFrWSUsLMBfL*ZB`CRsIVHNTR&b?K zxBgsN0BjfB>UVcJ|x%=-zb%OV7lmZc& zxiupadZVF7)6QuhoY;;FK2b*qL0J-Rn-8!X4ZY$-ZSUXV5DFd7`T41c(#lAeLMoeT z4%g655v@7AqT!i@)Edt5JMbN(=Q-6{=L4iG8RA%}w;&pKmtWvI4?G9pVRp|RTw`g0 zD5c12B&A2&P6Ng~8WM2eIW=wxd?r7A*N+&!Be7PX3s|7~z=APxm=A?5 zt>xB4WG|*Td@VX{Rs)PV0|yK`oI3^xn(4c_j&vgxk_Y3o(-`_5o`V zRTghg6%l@(qodXN;dB#+OKJEEvhfcnc#BeO2|E(5df-!fKDZ!%9!^BJ_4)9P+9Dq5 zK1=(v?KmIp34r?z{NEWnLB3Px{XYwy-akun4F7xTRr2^zeYW{gcK9)>aJDdU5;w5@ zak=<+-PLH-|04pelTb%ULpuuuJC7DgyT@D|p{!V!0v3KpDnRjANN12q6SUR3mb9<- z>2r~IApQGhstZ!3*?5V z8#)hJ0TdZg0M-BK#nGFP>$i=qk82DO z7h;Ft!D5E15OgW)&%lej*?^1~2=*Z5$2VX>V{x8SC+{i10BbtUk9@I#Vi&hX)q

Q!LwySI{Bnv%Sm)yh{^sSVJ8&h_D-BJ_YZe5eCaAWU9b$O2c z$T|{vWVRtOL!xC0DTc(Qbe`ItNtt5hr<)VijD0{U;T#bUEp381_y`%ZIav?kuYG{iyYdEBPW=*xNSc;Rlt6~F4M`5G+VtOjc z*0qGzCb@gME5udTjJA-9O<&TWd~}ysBd(eVT1-H82-doyH9RST)|+Pb{o*;$j9Tjs zhU!IlsPsj8=(x3bAKJTopW3^6AKROHR^7wZ185wJGVhA~hEc|LP;k7NEz-@4p5o}F z`AD6naG3(n=NF9HTH81=F+Q|JOz$7wm9I<+#BSmB@o_cLt2GkW9|?7mM;r!JZp89l zbo!Hp8=n!XH1{GwaDU+k)pGp`C|cXkCU5%vcH)+v@0eK>%7gWxmuMu9YLlChA|_D@ zi#5zovN_!a-0?~pUV-Rj*1P)KwdU-LguR>YM&*Nen+ln8Q$?WFCJg%DY%K}2!!1FE zDv-A%Cbwo^p(lzac&_TZ-l#9kq`mhLcY3h9ZTUVCM(Ad&=EriQY5{jJv<5K&g|*Lk zgV%ILnf1%8V2B0E&;Sp4sYbYOvvMebLwYwzkRQ#F8GpTQq#uv=J`uaSJ34OWITeSGo6+-8Xw znCk*n{kdDEi)Hi&u^)~cs@iyCkFWB2SWZU|Uc%^43ZIZQ-vWNExCCtDWjqHs;;tWf$v{}0{p0Rvxkq``)*>+Akq%|Na zA`@~-Vfe|+(AIlqru+7Ceh4nsVmO9p9jc8}HX^W&ViBDXT+uXbT#R#idPn&L>+#b6 zflC-4C5-X;kUnR~L>PSLh*gvL68}RBsu#2l`s_9KjUWRhiqF`j)`y`2`YU(>3bdBj z?>iyjEhe-~$^I5!nn%B6Wh+I`FvLNvauve~eX<+Ipl&04 zT}};W&1a3%W?dJ2=N#0t?e+aK+%t}5q%jSLvp3jZ%?&F}nOOWr>+{GFIa%wO_2`et z=JzoRR~}iKuuR+azPI8;Gf9)z3kyA4EIOSl!sRR$DlW}0>&?GbgPojmjmnln;cTqCt=ADbE zZ8GAnoM+S1(5$i8^O4t`ue;vO4i}z0wz-QEIVe5_u03;}-!G1NyY8;h^}y;tzY}i5 zqQr#Ur3Fy8sSa$Q0ys+f`!`+>9WbvU_I`Sj;$4{S>O3?#inLHCrtLy~!s#WXV=oVP zeE93*Nc`PBi4q@%Ao$x4lw9vLHM!6mn3-b_cebF|n-2vt-zYVF_&sDE--J-P;2WHo z+@n2areE0o$LjvjlV2X7ZU@j+`{*8zq`JR3gKF#EW|#+{nMyo-a>nFFTg&vhyT=b} zDa8+v0(Dgx0yRL@ZXOYIlVSZ0|MFizy0VPW8;AfA5|pe!#j zX}Py^8fl5SyS4g1WSKKtnyP+_PoOwMMwu`(i@Z)diJp~U54*-miOchy7Z35eL>^M z4p<-aIxH4VUZgS783@H%M7P9hX>t{|RU7$n4T(brCG#h9e9p! z+o`i;EGGq3&pF;~5V~eBD}lC)>if$w%Vf}AFxGqO88|ApfHf&Bvu+xdG)@vuF}Yvk z)o;~k-%+0K0g+L`Wala!$=ZV|z$e%>f0%XoLib%)!R^RoS+{!#X?h-6uu zF&&KxORdZU&EwQFITIRLo(7TA3W}y6X{?Y%y2j0It!ekU#<)$qghZtpcS>L3uh`Uj z7GY;6f$9qKynP#oS3$$a{p^{D+0oJQ71`1?OAn_m8)UGZmj3l*ZI)`V-a>MKGGFG< z&^jg#Ok%(hhm>hSrZ5;Qga4u(?^i>GiW_j9%_7M>j(^|Om$#{k+^*ULnEgzW_1gCICtAD^WpC`A z{9&DXkG#01Xo)U$OC(L5Y$DQ|Q4C6CjUKk1UkPj$nXH##J{c8e#K|&{mA*;b$r0E4 zUNo0jthwA(c&N1l=PEe8Rw_8cEl|-eya9z&H3#n`B$t#+aJ03RFMzrV@gowbe8v(c zIFM60^0&lCFO10NU4w@|61xiZ4CVXeaKjd;d?sv52XM*lS8XiVjgWpRB;&U_C0g+`6B5V&w|O6B*_q zsATxL!M}+$He)1eOWECce#eS@2n^xhlB4<_Nn?yCVEQWDs(r`|@2GqLe<#(|&P0U? z$7V5IgpWf09uIf_RazRwC?qEqRaHyL?iiS05UiGesJy%^>-C{{ypTBI&B0-iUYhk> zIk<5xpsuV@g|z(AZD+C-;A!fTG=df1=<%nxy(a(IS+U{ME4ZbDEBtcD_3V=icT6*_ z)>|J?>&6%nvHhZERBtjK+s4xnut*@>GAmA5m*OTp$!^CHTr}vM4n(X1Q*;{e-Rd2BCF-u@1ZGm z!S8hJ6L=Gl4T_SDa7Xx|-{4mxveJg=ctf`BJ*fy!yF6Dz&?w(Q_6B}WQVtNI!BVBC zKfX<>7vd6C96}XAQmF-Jd?1Q4eTfRB3q7hCh0f!(JkdWT5<{iAE#dKy*Jxq&3a1@~ z8C||Dn2mFNyrUV|<-)C^_y7@8c2Fz+2jrae9deBDu;U}tJ{^xAdxCD248(k;dCJ%o z`y3sADe>U%suxwwv~8A1+R$VB=Q?%U?4joI$um;aH+eCrBqpn- z%79D_7rb;R-;-9RTrwi9dPlg8&@tfWhhZ(Vx&1PQ+6(huX`;M9x~LrW~~#3{j0Bh2kDU$}@!fFQej4VGkJv?M4rU^x!RU zEwhu$!CA_iDjFjrJa`aocySDX16?~;+wgav;}Zut6Mg%C4>}8FL?8)Kgwc(Qlj{@#2Pt0?G`$h7P#M+qoXtlV@d}%c&OzO+QYKK`kyXaK{U(O^2DyIXCZlNQjt0^8~8JzNGrIxhj}}M z&~QZlbx%t;MJ(Vux;2tgNKGlAqphLq%pd}JG9uoVHUo?|hN{pLQ6Em%r*+7t^<);X zm~6=qChlNAVXNN*Sow->*4;}T;l;D1I-5T{Bif@4_}=>l`tK;qqDdt5zvisCKhMAH z#r}`)7VW?LZqfdmXQ%zo5bJ00{Xb9^YKrk0Nf|oIW*K@(=`o2Vndz}ZDyk{!u}PVx zzd--+_WC*U{~DH3{?GI64IB+@On&@9X>EUAo&L+G{L^dozaI4C3G#2wr~hseW@K&g zKWs{uHu-9Je!3;4pE>eBltKUXb^*hG8I&413)$J&{D4N%7PcloU6bn%jPxJyQL?g* z9g+YFFEDiE`8rW^laCNzQmi7CTnPfwyg3VDHRAl>h=In6jeaVOP@!-CP60j3+#vpL zEYmh_oP0{-gTe7Or`L6x)6w?77QVi~jD8lWN@3RHcm80iV%M1A!+Y6iHM)05iC64tb$X2lV_%Txk@0l^hZqi^%Z?#- zE;LE0uFx)R08_S-#(wC=dS&}vj6P4>5ZWjhthP=*Hht&TdLtKDR;rXEX4*z0h74FA zMCINqrh3Vq;s%3MC1YL`{WjIAPkVL#3rj^9Pj9Ss7>7duy!9H0vYF%>1jh)EPqvlr6h%R%CxDsk| z!BACz7E%j?bm=pH6Eaw{+suniuY7C9Ut~1cWfOX9KW9=H><&kQlinPV3h9R>3nJvK z4L9(DRM=x;R&d#a@oFY7mB|m8h4692U5eYfcw|QKwqRsshN(q^v$4$)HgPpAJDJ`I zkqjq(8Cd!K!+wCd=d@w%~e$=gdUgD&wj$LQ1r>-E=O@c ze+Z$x{>6(JA-fNVr)X;*)40Eym1TtUZI1Pwwx1hUi+G1Jlk~vCYeXMNYtr)1?qwyg zsX_e*$h?380O00ou?0R@7-Fc59o$UvyVs4cUbujHUA>sH!}L54>`e` zHUx#Q+Hn&Og#YVOuo*niy*GU3rH;%f``nk#NN5-xrZ34NeH$l`4@t);4(+0|Z#I>Y z)~Kzs#exIAaf--65L0UHT_SvV8O2WYeD>Mq^Y6L!Xu8%vnpofG@w!}R7M28?i1*T&zp3X4^OMCY6(Dg<-! zXmcGQrRgHXGYre7GfTJ)rhl|rs%abKT_Nt24_Q``XH{88NVPW+`x4ZdrMuO0iZ0g` z%p}y};~T5gbb9SeL8BSc`SO#ixC$@QhXxZ=B}L`tP}&k?1oSPS=4%{UOHe0<_XWln zwbl5cn(j-qK`)vGHY5B5C|QZd5)W7c@{bNVXqJ!!n$^ufc?N9C-BF2QK1(kv++h!>$QbAjq)_b$$PcJdV+F7hz0Hu@ zqj+}m0qn{t^tD3DfBb~0B36|Q`bs*xs|$i^G4uNUEBl4g;op-;Wl~iThgga?+dL7s zUP(8lMO?g{GcYpDS{NM!UA8Hco?#}eNEioRBHy4`mq!Pd-9@-97|k$hpEX>xoX+dY zDr$wfm^P&}Wu{!%?)U_(%Mn79$(ywvu*kJ9r4u|MyYLI_67U7%6Gd_vb##Nerf@>& z8W11z$$~xEZt$dPG}+*IZky+os5Ju2eRi;1=rUEeIn>t-AzC_IGM-IXWK3^6QNU+2pe=MBn4I*R@A%-iLDCOHTE-O^wo$sL_h{dcPl=^muAQb`_BRm};=cy{qSkui;`WSsj9%c^+bIDQ z0`_?KX0<-=o!t{u(Ln)v>%VGL z0pC=GB7*AQ?N7N{ut*a%MH-tdtNmNC+Yf$|KS)BW(gQJ*z$d{+{j?(e&hgTy^2|AR9vx1Xre2fagGv0YXWqtNkg*v%40v?BJBt|f9wX5 z{QTlCM}b-0{mV?IG>TW_BdviUKhtosrBqdfq&Frdz>cF~yK{P@(w{Vr7z2qKFwLhc zQuogKO@~YwyS9%+d-zD7mJG~@?EFJLSn!a&mhE5$_4xBl&6QHMzL?CdzEnC~C3$X@ zvY!{_GR06ep5;<#cKCSJ%srxX=+pn?ywDwtJ2{TV;0DKBO2t++B(tIO4)Wh`rD13P z4fE$#%zkd=UzOB74gi=-*CuID&Z3zI^-`4U^S?dHxK8fP*;fE|a(KYMgMUo`THIS1f!*6dOI2 zFjC3O=-AL`6=9pp;`CYPTdVX z8(*?V&%QoipuH0>WKlL8A*zTKckD!paN@~hh zmXzm~qZhMGVdQGd=AG8&20HW0RGV8X{$9LldFZYm zE?}`Q3i?xJRz43S?VFMmqRyvWaS#(~Lempg9nTM$EFDP(Gzx#$r)W&lpFKqcAoJh-AxEw$-bjW>`_+gEi z2w`99#UbFZGiQjS8kj~@PGqpsPX`T{YOj`CaEqTFag;$jY z8_{Wzz>HXx&G*Dx<5skhpETxIdhKH?DtY@b9l8$l?UkM#J-Snmts7bd7xayKTFJ(u zyAT&@6cAYcs{PBfpqZa%sxhJ5nSZBPji?Zlf&}#L?t)vC4X5VLp%~fz2Sx<*oN<7` z?ge=k<=X7r<~F7Tvp9#HB{!mA!QWBOf%EiSJ6KIF8QZNjg&x~-%e*tflL(ji_S^sO ztmib1rp09uon}RcsFi#k)oLs@$?vs(i>5k3YN%$T(5Or(TZ5JW9mA6mIMD08=749$ z!d+l*iu{Il7^Yu}H;lgw=En1sJpCKPSqTCHy4(f&NPelr31^*l%KHq^QE>z>Ks_bH zjbD?({~8Din7IvZeJ>8Ey=e;I?thpzD=zE5UHeO|neioJwG;IyLk?xOz(yO&0DTU~ z^#)xcs|s>Flgmp;SmYJ4g(|HMu3v7#;c*Aa8iF#UZo7CvDq4>8#qLJ|YdZ!AsH%^_7N1IQjCro

K7UpUK$>l@ zw`1S}(D?mUXu_C{wupRS-jiX~w=Uqqhf|Vb3Cm9L=T+w91Cu^ z*&Ty%sN?x*h~mJc4g~k{xD4ZmF%FXZNC;oVDwLZ_WvrnzY|{v8hc1nmx4^}Z;yriXsAf+Lp+OFLbR!&Ox?xABwl zu8w&|5pCxmu#$?Cv2_-Vghl2LZ6m7}VLEfR5o2Ou$x02uA-%QB2$c(c1rH3R9hesc zfpn#oqpbKuVsdfV#cv@5pV4^f_!WS+F>SV6N0JQ9E!T90EX((_{bSSFv9ld%I0&}9 zH&Jd4MEX1e0iqDtq~h?DBrxQX1iI0lIs<|kB$Yrh&cpeK0-^K%=FBsCBT46@h#yi!AyDq1V(#V}^;{{V*@T4WJ&U-NTq43w=|K>z8%pr_nC>%C(Wa_l78Ufib$r8Od)IIN=u>417 z`Hl{9A$mI5A(;+-Q&$F&h-@;NR>Z<2U;Y21>>Z;s@0V@SbkMQQj%_;~+qTuQ?c|AV zcWm3XZQHhP&R%QWarS%mJ!9R^&!_)*s(v+VR@I#QrAT}`17Y+l<`b-nvmDNW`De%y zrwTZ9EJrj1AFA>B`1jYDow}~*dfPs}IZMO3=a{Fy#IOILc8F0;JS4x(k-NSpbN@qM z`@aE_e}5{!$v3+qVs7u?sOV(y@1Os*Fgu`fCW9=G@F_#VQ%xf$hj0~wnnP0$hFI+@ zkQj~v#V>xn)u??YutKsX>pxKCl^p!C-o?+9;!Nug^ z{rP!|+KsP5%uF;ZCa5F;O^9TGac=M|=V z_H(PfkV1rz4jl?gJ(ArXMyWT4y(86d3`$iI4^l9`vLdZkzpznSd5Ikfrs8qcSy&>z zTIZgWZGXw0n9ibQxYWE@gI0(3#KA-dAdPcsL_|hg2@~C!VZDM}5;v_Nykfq!*@*Zf zE_wVgx82GMDryKO{U{D>vSzSc%B~|cjDQrt5BN=Ugpsf8H8f1lR4SGo#hCuXPL;QQ z#~b?C4MoepT3X`qdW2dNn& zo8)K}%Lpu>0tQei+{>*VGErz|qjbK#9 zvtd8rcHplw%YyQCKR{kyo6fgg!)6tHUYT(L>B7er5)41iG`j$qe*kSh$fY!PehLcD zWeKZHn<492B34*JUQh=CY1R~jT9Jt=k=jCU2=SL&&y5QI2uAG2?L8qd2U(^AW#{(x zThSy=C#>k+QMo^7caQcpU?Qn}j-`s?1vXuzG#j8(A+RUAY})F@=r&F(8nI&HspAy4 z4>(M>hI9c7?DCW8rw6|23?qQMSq?*Vx?v30U%luBo)B-k2mkL)Ljk5xUha3pK>EEj z@(;tH|M@xkuN?gsz;*bygizwYR!6=(Xgcg^>WlGtRYCozY<rFX2E>kaZo)O<^J7a`MX8Pf`gBd4vrtD|qKn&B)C&wp0O-x*@-|m*0egT=-t@%dD zgP2D+#WPptnc;_ugD6%zN}Z+X4=c61XNLb7L1gWd8;NHrBXwJ7s0ce#lWnnFUMTR& z1_R9Fin4!d17d4jpKcfh?MKRxxQk$@)*hradH2$3)nyXep5Z;B z?yX+-Bd=TqO2!11?MDtG0n(*T^!CIiF@ZQymqq1wPM_X$Iu9-P=^}v7npvvPBu!d$ z7K?@CsA8H38+zjA@{;{kG)#AHME>Ix<711_iQ@WWMObXyVO)a&^qE1GqpP47Q|_AG zP`(AD&r!V^MXQ^e+*n5~Lp9!B+#y3#f8J^5!iC@3Y@P`;FoUH{G*pj*q7MVV)29+j z>BC`a|1@U_v%%o9VH_HsSnM`jZ-&CDvbiqDg)tQEnV>b%Ptm)T|1?TrpIl)Y$LnG_ zzKi5j2Fx^K^PG1=*?GhK;$(UCF-tM~^=Z*+Wp{FSuy7iHt9#4n(sUuHK??@v+6*|10Csdnyg9hAsC5_OrSL;jVkLlf zHXIPukLqbhs~-*oa^gqgvtpgTk_7GypwH><53riYYL*M=Q@F-yEPLqQ&1Sc zZB%w}T~RO|#jFjMWcKMZccxm-SL)s_ig?OC?y_~gLFj{n8D$J_Kw%{r0oB8?@dWzn zB528d-wUBQzrrSSLq?fR!K%59Zv9J4yCQhhDGwhptpA5O5U?Hjqt>8nOD zi{)0CI|&Gu%zunGI*XFZh(ix)q${jT8wnnzbBMPYVJc4HX*9d^mz|21$=R$J$(y7V zo0dxdbX3N#=F$zjstTf*t8vL)2*{XH!+<2IJ1VVFa67|{?LP&P41h$2i2;?N~RA30LV`BsUcj zfO9#Pg1$t}7zpv#&)8`mis3~o+P(DxOMgz-V*(?wWaxi?R=NhtW}<#^Z?(BhSwyar zG|A#Q7wh4OfK<|DAcl9THc-W4*>J4nTevsD%dkj`U~wSUCh15?_N@uMdF^Kw+{agk zJ`im^wDqj`Ev)W3k3stasP`88-M0ZBs7;B6{-tSm3>I@_e-QfT?7|n0D~0RRqDb^G zyHb=is;IwuQ&ITzL4KsP@Z`b$d%B0Wuhioo1CWttW8yhsER1ZUZzA{F*K=wmi-sb#Ju+j z-l@In^IKnb{bQG}Ps>+Vu_W#grNKNGto+yjA)?>0?~X`4I3T@5G1)RqGUZuP^NJCq&^HykuYtMDD8qq+l8RcZNJsvN(10{ zQ1$XcGt}QH-U^WU!-wRR1d--{B$%vY{JLWIV%P4-KQuxxDeJaF#{eu&&r!3Qu{w}0f--8^H|KwE>)ORrcR+2Qf zb})DRcH>k0zWK8@{RX}NYvTF;E~phK{+F;MkIP$)T$93Ba2R2TvKc>`D??#mv9wg$ zd~|-`Qx5LwwsZ2hb*Rt4S9dsF%Cny5<1fscy~)d;0m2r$f=83<->c~!GNyb!U)PA; zq^!`@@)UaG)Ew(9V?5ZBq#c%dCWZrplmuM`o~TyHjAIMh0*#1{B>K4po-dx$Tk-Cq z=WZDkP5x2W&Os`N8KiYHRH#UY*n|nvd(U>yO=MFI-2BEp?x@=N<~CbLJBf6P)}vLS?xJXYJ2^<3KJUdrwKnJnTp{ zjIi|R=L7rn9b*D#Xxr4*R<3T5AuOS+#U8hNlfo&^9JO{VbH!v9^JbK=TCGR-5EWR@ zN8T-_I|&@A}(hKeL4_*eb!1G8p~&_Im8|wc>Cdir+gg90n1dw?QaXcx6Op_W1r=axRw>4;rM*UOpT#Eb9xU1IiWo@h?|5uP zka>-XW0Ikp@dIe;MN8B01a7+5V@h3WN{J=HJ*pe0uwQ3S&MyWFni47X32Q7SyCTNQ z+sR!_9IZa5!>f&V$`q!%H8ci!a|RMx5}5MA_kr+bhtQy{-^)(hCVa@I!^TV4RBi zAFa!Nsi3y37I5EK;0cqu|9MRj<^r&h1lF}u0KpKQD^5Y+LvFEwM zLU@@v4_Na#Axy6tn3P%sD^5P#<7F;sd$f4a7LBMk zGU^RZHBcxSA%kCx*eH&wgA?Qwazm8>9SCSz_!;MqY-QX<1@p$*T8lc?@`ikEqJ>#w zcG``^CoFMAhdEXT9qt47g0IZkaU)4R7wkGs^Ax}usqJ5HfDYAV$!=6?>J6+Ha1I<5 z|6=9soU4>E))tW$<#>F ziZ$6>KJf0bPfbx_)7-}tMINlc=}|H+$uX)mhC6-Hz+XZxsKd^b?RFB6et}O#+>Wmw9Ec9) z{q}XFWp{3@qmyK*Jvzpyqv57LIR;hPXKsrh{G?&dRjF%Zt5&m20Ll?OyfUYC3WRn{cgQ?^V~UAv+5 z&_m#&nIwffgX1*Z2#5^Kl4DbE#NrD&Hi4|7SPqZ}(>_+JMz=s|k77aEL}<=0Zfb)a z%F(*L3zCA<=xO)2U3B|pcTqDbBoFp>QyAEU(jMu8(jLA61-H!ucI804+B!$E^cQQa z)_ERrW3g!B9iLb3nn3dlkvD7KsY?sRvls3QC0qPi>o<)GHx%4Xb$5a3GBTJ(k@`e@ z$RUa^%S15^1oLEmA=sayrP5;9qtf!Z1*?e$ORVPsXpL{jL<6E)0sj&swP3}NPmR%FM?O>SQgN5XfHE< zo(4#Cv11(%Nnw_{_Ro}r6=gKd{k?NebJ~<~Kv0r(r0qe4n3LFx$5%x(BKvrz$m?LG zjLIc;hbj0FMdb9aH9Lpsof#yG$(0sG2%RL;d(n>;#jb!R_+dad+K;Ccw!|RY?uS(a zj~?=&M!4C(5LnlH6k%aYvz@7?xRa^2gml%vn&eKl$R_lJ+e|xsNfXzr#xuh(>`}9g zLHSyiFwK^-p!;p$yt7$F|3*IfO3Mlu9e>Dpx8O`37?fA`cj`C0B-m9uRhJjs^mRp# zWB;Aj6|G^1V6`jg7#7V9UFvnB4((nIwG?k%c7h`?0tS8J3Bn0t#pb#SA}N-|45$-j z$R>%7cc2ebAClXc(&0UtHX<>pd)akR3Kx_cK+n<}FhzmTx!8e9^u2e4%x{>T6pQ`6 zO182bh$-W5A3^wos0SV_TgPmF4WUP-+D25KjbC{y_6W_9I2_vNKwU(^qSdn&>^=*t z&uvp*@c8#2*paD!ZMCi3;K{Na;I4Q35zw$YrW5U@Kk~)&rw;G?d7Q&c9|x<Hg|CNMsxovmfth*|E*GHezPTWa^Hd^F4!B3sF;)? z(NaPyAhocu1jUe(!5Cy|dh|W2=!@fNmuNOzxi^tE_jAtzNJ0JR-avc_H|ve#KO}#S z#a(8secu|^Tx553d4r@3#6^MHbH)vmiBpn0X^29xEv!Vuh1n(Sr5I0V&`jA2;WS|Y zbf0e}X|)wA-Pf5gBZ>r4YX3Mav1kKY(ulAJ0Q*jB)YhviHK)w!TJsi3^dMa$L@^{` z_De`fF4;M87vM3Ph9SzCoCi$#Fsd38u!^0#*sPful^p5oI(xGU?yeYjn;Hq1!wzFk zG&2w}W3`AX4bxoVm03y>ts{KaDf!}b&7$(P4KAMP=vK5?1In^-YYNtx1f#}+2QK@h zeSeAI@E6Z8a?)>sZ`fbq9_snl6LCu6g>o)rO;ijp3|$vig+4t} zylEo7$SEW<_U+qgVcaVhk+4k+C9THI5V10qV*dOV6pPtAI$)QN{!JRBKh-D zk2^{j@bZ}yqW?<#VVuI_27*cI-V~sJiqQv&m07+10XF+#ZnIJdr8t`9s_EE;T2V;B z4UnQUH9EdX%zwh-5&wflY#ve!IWt0UE-My3?L#^Bh%kcgP1q{&26eXLn zTkjJ*w+(|_>Pq0v8{%nX$QZbf)tbJaLY$03;MO=Ic-uqYUmUCuXD>J>o6BCRF=xa% z3R4SK9#t1!K4I_d>tZgE>&+kZ?Q}1qo4&h%U$GfY058s%*=!kac{0Z+4Hwm!)pFLR zJ+5*OpgWUrm0FPI2ib4NPJ+Sk07j(`diti^i#kh&f}i>P4~|d?RFb#!JN)~D@)beox}bw?4VCf^y*`2{4`-@%SFTry2h z>9VBc9#JxEs1+0i2^LR@B1J`B9Ac=#FW=(?2;5;#U$0E0UNag_!jY$&2diQk_n)bT zl5Me_SUvqUjwCqmVcyb`igygB_4YUB*m$h5oeKv3uIF0sk}~es!{D>4r%PC*F~FN3owq5e0|YeUTSG#Vq%&Gk7uwW z0lDo#_wvflqHeRm*}l?}o;EILszBt|EW*zNPmq#?4A+&i0xx^?9obLyY4xx=Y9&^G;xYXYPxG)DOpPg!i_Ccl#3L}6xAAZzNhPK1XaC_~ z!A|mlo?Be*8Nn=a+FhgpOj@G7yYs(Qk(8&|h@_>w8Y^r&5nCqe0V60rRz?b5%J;GYeBqSAjo|K692GxD4` zRZyM2FdI+-jK2}WAZTZ()w_)V{n5tEb@>+JYluDozCb$fA4H)$bzg(Ux{*hXurjO^ zwAxc+UXu=&JV*E59}h3kzQPG4M)X8E*}#_&}w*KEgtX)cU{vm9b$atHa;s>| z+L6&cn8xUL*OSjx4YGjf6{Eq+Q3{!ZyhrL&^6Vz@jGbI%cAM9GkmFlamTbcQGvOlL zmJ?(FI)c86=JEs|*;?h~o)88>12nXlpMR4@yh%qdwFNpct;vMlc=;{FSo*apJ;p}! zAX~t;3tb~VuP|ZW;z$=IHf->F@Ml)&-&Bnb{iQyE#;GZ@C$PzEf6~q}4D>9jic@mTO5x76ulDz@+XAcm35!VSu zT*Gs>;f0b2TNpjU_BjHZ&S6Sqk6V1370+!eppV2H+FY!q*n=GHQ!9Rn6MjY!Jc77A zG7Y!lFp8?TIHN!LXO?gCnsYM-gQxsm=Ek**VmZu7vnuufD7K~GIxfxbsQ@qv2T zPa`tvHB$fFCyZl>3oYg?_wW)C>^_iDOc^B7klnTOoytQH18WkOk)L2BSD0r%xgRSW zQS9elF^?O=_@|58zKLK;(f77l-Zzu}4{fXed2saq!5k#UZAoDBqYQS{sn@j@Vtp|$ zG%gnZ$U|9@u#w1@11Sjl8ze^Co=)7yS(}=;68a3~g;NDe_X^}yJj;~s8xq9ahQ5_r zxAlTMnep*)w1e(TG%tWsjo3RR;yVGPEO4V{Zp?=a_0R#=V^ioQu4YL=BO4r0$$XTX zZfnw#_$V}sDAIDrezGQ+h?q24St0QNug_?{s-pI(^jg`#JRxM1YBV;a@@JQvH8*>> zIJvku74E0NlXkYe_624>znU0J@L<-c=G#F3k4A_)*;ky!C(^uZfj%WB3-*{*B$?9+ zDm$WFp=0(xnt6`vDQV3Jl5f&R(Mp};;q8d3I%Kn>Kx=^;uSVCw0L=gw53%Bp==8Sw zxtx=cs!^-_+i{2OK`Q;913+AXc_&Z5$@z3<)So0CU3;JAv=H?@Zpi~riQ{z-zLtVL z!oF<}@IgJp)Iyz1zVJ42!SPHSkjYNS4%ulVVIXdRuiZ@5Mx8LJS}J#qD^Zi_xQ@>DKDr-_e#>5h3dtje*NcwH_h;i{Sx7}dkdpuW z(yUCjckQsagv*QGMSi9u1`Z|V^}Wjf7B@q%j2DQXyd0nOyqg%m{CK_lAoKlJ7#8M} z%IvR?Vh$6aDWK2W!=i?*<77q&B8O&3?zP(Cs@kapc)&p7En?J;t-TX9abGT#H?TW? ztO5(lPKRuC7fs}zwcUKbRh=7E8wzTsa#Z{a`WR}?UZ%!HohN}d&xJ=JQhpO1PI#>X zHkb>pW04pU%Bj_mf~U}1F1=wxdBZu1790>3Dm44bQ#F=T4V3&HlOLsGH)+AK$cHk6 zia$=$kog?)07HCL*PI6}DRhpM^*%I*kHM<#1Se+AQ!!xyhcy6j7`iDX7Z-2i73_n# zas*?7LkxS-XSqv;YBa zW_n*32D(HTYQ0$feV_Fru1ZxW0g&iwqixPX3=9t4o)o|kOo79V$?$uh?#8Q8e>4e)V6;_(x&ViUVxma+i25qea;d-oK7ouuDsB^ab{ zu1qjQ%`n56VtxBE#0qAzb7lph`Eb-}TYpXB!H-}3Ykqyp`otprp7{VEuW*^IR2n$Fb99*nAtqT&oOFIf z@w*6>YvOGw@Ja?Pp1=whZqydzx@9X4n^2!n83C5{C?G@|E?&$?p*g68)kNvUTJ)I6 z1Q|(#UuP6pj78GUxq11m-GSszc+)X{C2eo-?8ud9sB=3(D47v?`JAa{V(IF zPZQ_0AY*9M97>Jf<o%#O_%Wq}8>YM=q0|tGY+hlXcpE=Z4Od z`NT7Hu2hnvRoqOw@g1f=bv`+nba{GwA$Ak0INlqI1k<9!x_!sL()h?hEWoWrdU3w` zZ%%)VR+Bc@_v!C#koM1p-3v_^L6)_Ktj4HE>aUh%2XZE@JFMOn)J~c`_7VWNb9c-N z2b|SZMR4Z@E7j&q&9(6H3yjEu6HV7{2!1t0lgizD;mZ9$r(r7W5G$ky@w(T_dFnOD z*p#+z$@pKE+>o@%eT(2-p_C}wbQ5s(%Sn_{$HDN@MB+Ev?t@3dPy`%TZ!z}AThZSu zN<1i$siJhXFdjV zP*y|V<`V8t=h#XTRUR~5`c`Z9^-`*BZf?WAehGdg)E2Je)hqFa!k{V(u+(hTf^Yq& zoruUh2(^3pe)2{bvt4&4Y9CY3js)PUHtd4rVG57}uFJL)D(JfSIo^{P=7liFXG zq5yqgof0V8paQcP!gy+;^pp-DA5pj=gbMN0eW=-eY+N8~y+G>t+x}oa!5r>tW$xhI zPQSv=pi;~653Gvf6~*JcQ%t1xOrH2l3Zy@8AoJ+wz@daW@m7?%LXkr!bw9GY@ns3e zSfuWF_gkWnesv?s3I`@}NgE2xwgs&rj?kH-FEy82=O8`+szN ziHch`vvS`zNfap14!&#i9H@wF7}yIPm=UB%(o(}F{wsZ(wA0nJ2aD^@B41>>o-_U6 zUqD~vdo48S8~FTb^+%#zcbQiiYoDKYcj&$#^;Smmb+Ljp(L=1Kt_J!;0s%1|JK}Wi z;={~oL!foo5n8=}rs6MmUW~R&;SIJO3TL4Ky?kh+b2rT9B1Jl4>#Uh-Bec z`Hsp<==#UEW6pGPhNk8H!!DUQR~#F9jEMI6T*OWfN^Ze&X(4nV$wa8QUJ>oTkruH# zm~O<`J7Wxseo@FqaZMl#Y(mrFW9AHM9Kb|XBMqaZ2a)DvJgYipkDD_VUF_PKd~dT7 z#02}bBfPn9a!X!O#83=lbJSK#E}K&yx-HI#T6ua)6o0{|={*HFusCkHzs|Fn&|C3H zBck1cmfcWVUN&i>X$YU^Sn6k2H;r3zuXbJFz)r5~3$d$tUj(l1?o={MM){kjgqXRO zc5R*#{;V7AQh|G|)jLM@wGAK&rm2~@{Pewv#06pHbKn#wL0P6F1!^qw9g&cW3Z=9} zj)POhOlwsh@eF=>z?#sIs*C-Nl(yU!#DaiaxhEs#iJqQ8w%(?+6lU02MYSeDkr!B- zPjMv+on6OLXgGnAtl(ao>|X2Y8*Hb}GRW5}-IzXnoo-d0!m4Vy$GS!XOLy>3_+UGs z2D|YcQx@M#M|}TDOetGi{9lGo9m-=0-^+nKE^*?$^uHkxZh}I{#UTQd;X!L+W@jm( zDg@N4+lUqI92o_rNk{3P>1gxAL=&O;x)ZT=q1mk0kLlE$WeWuY_$0`0jY-Kkt zP*|m3AF}Ubd=`<>(Xg0har*_@x2YH}bn0Wk*OZz3*e5;Zc;2uBdnl8?&XjupbkOeNZsNh6pvsq_ydmJI+*z**{I{0K)-;p1~k8cpJXL$^t!-`E}=*4G^-E8>H!LjTPxSx zcF+cS`ommfKMhNSbas^@YbTpH1*RFrBuATUR zt{oFWSk^$xU&kbFQ;MCX22RAN5F6eq9UfR$ut`Jw--p2YX)A*J69m^!oYfj2y7NYcH6&r+0~_sH^c^nzeN1AU4Ga7=FlR{S|Mm~MpzY0$Z+p2W(a={b-pR9EO1Rs zB%KY|@wLcAA@)KXi!d2_BxrkhDn`DT1=Dec}V!okd{$+wK z4E{n8R*xKyci1(CnNdhf$Dp2(Jpof0-0%-38X=Dd9PQgT+w%Lshx9+loPS~MOm%ZT zt%2B2iL_KU_ita%N>xjB!#71_3=3c}o zgeW~^U_ZTJQ2!PqXulQd=3b=XOQhwATK$y(9$#1jOQ4}4?~l#&nek)H(04f(Sr=s| zWv7Lu1=%WGk4FSw^;;!8&YPM)pQDCY9DhU`hMty1@sq1=Tj7bFsOOBZOFlpR`W>-J$-(kezWJj;`?x-v>ev{*8V z8p|KXJPV$HyQr1A(9LVrM47u-XpcrIyO`yWvx1pVYc&?154aneRpLqgx)EMvRaa#|9?Wwqs2+W8n5~79G z(}iCiLk;?enn}ew`HzhG+tu+Ru@T+K5juvZN)wY;x6HjvqD!&!)$$;1VAh~7fg0K| zEha#aN=Yv|3^~YFH}cc38ovVb%L|g@9W6fo(JtT6$fa?zf@Ct88e}m?i)b*Jgc{fl zExfdvw-BYDmH6>(4QMt#p0;FUIQqkhD}aH?a7)_%JtA~soqj{ppP_82yi9kaxuK>~ ze_)Zt>1?q=ZH*kF{1iq9sr*tVuy=u>Zev}!gEZx@O6-fjyu9X00gpIl-fS_pzjpqJ z1yqBmf9NF!jaF<+YxgH6oXBdK)sH(>VZ)1siyA$P<#KDt;8NT*l_0{xit~5j1P)FN zI8hhYKhQ)i z37^aP13B~u65?sg+_@2Kr^iWHN=U;EDSZ@2W2!5ALhGNWXnFBY%7W?1 z=HI9JzQ-pLKZDYTv<0-lt|6c-RwhxZ)mU2Os{bsX_i^@*fKUj8*aDO5pks=qn3Dv6 zwggpKLuyRCTVPwmw1r}B#AS}?X7b837UlXwp~E2|PJw2SGVueL7){Y&z!jL!XN=0i zU^Eig`S2`{+gU$68aRdWx?BZ{sU_f=8sn~>s~M?GU~`fH5kCc; z8ICp+INM3(3{#k32RZdv6b9MQYdZXNuk7ed8;G?S2nT+NZBG=Tar^KFl2SvhW$bGW#kdWL-I)s_IqVnCDDM9fm8g;P;8 z7t4yZn3^*NQfx7SwmkzP$=fwdC}bafQSEF@pd&P8@H#`swGy_rz;Z?Ty5mkS%>m#% zp_!m9e<()sfKiY(nF<1zBz&&`ZlJf6QLvLhl`_``%RW&{+O>Xhp;lwSsyRqGf=RWd zpftiR`={2(siiPAS|p}@q=NhVc0ELprt%=fMXO3B)4ryC2LT(o=sLM7hJC!}T1@)E zA3^J$3&1*M6Xq>03FX`R&w*NkrZE?FwU+Muut;>qNhj@bX17ZJxnOlPSZ=Zeiz~T_ zOu#yc3t6ONHB;?|r4w+pI)~KGN;HOGC)txxiUN8#mexj+W(cz%9a4sx|IRG=}ia zuEBuba3AHsV2feqw-3MvuL`I+2|`Ud4~7ZkN=JZ;L20|Oxna5vx1qbIh#k2O4$RQF zo`tL()zxaqibg^GbB+BS5#U{@K;WWQj~GcB1zb}zJkPwH|5hZ9iH2308!>_;%msji zJHSL~s)YHBR=Koa1mLEOHos*`gp=s8KA-C zu0aE+W!#iJ*0xqKm3A`fUGy#O+X+5W36myS>Uh2!R*s$aCU^`K&KKLCCDkejX2p=5 z%o7-fl03x`gaSNyr?3_JLv?2RLS3F*8ub>Jd@^Cc17)v8vYEK4aqo?OS@W9mt%ITJ z9=S2%R8M){CugT@k~~0x`}Vl!svYqX=E)c_oU6o}#Hb^%G1l3BudxA{F*tbjG;W_>=xV73pKY53v%>I)@D36I_@&p$h|Aw zonQS`07z_F#@T-%@-Tb|)7;;anoD_WH>9ewFy(ZcEOM$#Y)8>qi7rCnsH9GO-_7zF zu*C87{Df1P4TEOsnzZ@H%&lvV(3V@;Q!%+OYRp`g05PjY^gL$^$-t0Y>H*CDDs?FZly*oZ&dxvsxaUWF!{em4{A>n@vpXg$dwvt@_rgmHF z-MER`ABa8R-t_H*kv>}CzOpz;!>p^^9ztHMsHL|SRnS<-y5Z*r(_}c4=fXF`l^-i}>e7v!qs_jv zqvWhX^F=2sDNWA9c@P0?lUlr6ecrTKM%pNQ^?*Lq?p-0~?_j50xV%^(+H>sMul#Tw zeciF*1=?a7cI(}352%>LO96pD+?9!fNyl^9v3^v&Y4L)mNGK0FN43&Xf8jUlxW1Bw zyiu2;qW-aGNhs=zbuoxnxiwZ3{PFZM#Kw)9H@(hgX23h(`Wm~m4&TvoZoYp{plb^> z_#?vXcxd>r7K+1HKJvhed>gtK`TAbJUazUWQY6T~t2af%#<+Veyr%7-#*A#@&*;@g58{i|E%6yC_InGXCOd{L0;$)z#?n7M`re zh!kO{6=>7I?*}czyF7_frt#)s1CFJ_XE&VrDA?Dp3XbvF{qsEJgb&OLSNz_5g?HpK z9)8rsr4JN!Af3G9!#Qn(6zaUDqLN(g2g8*M)Djap?WMK9NKlkC)E2|-g|#-rp%!Gz zAHd%`iq|81efi93m3yTBw3g0j#;Yb2X{mhRAI?&KDmbGqou(2xiRNb^sV}%%Wu0?< z?($L>(#BO*)^)rSgyNRni$i`R4v;GhlCZ8$@e^ROX(p=2_v6Y!%^As zu022)fHdv_-~Yu_H6WVPLpHQx!W%^6j)cBhS`O3QBW#x(eX54d&I22op(N59b*&$v zFiSRY6rOc^(dgSV1>a7-5C;(5S5MvKcM2Jm-LD9TGqDpP097%52V+0>Xqq!! zq4e3vj53SE6i8J`XcQB|MZPP8j;PAOnpGnllH6#Ku~vS42xP*Nz@~y%db7Xi8s09P z1)e%8ys6&M8D=Dt6&t`iKG_4X=!kgRQoh%Z`dc&mlOUqXk-k`jKv9@(a^2-Upw>?< zt5*^DV~6Zedbec4NVl($2T{&b)zA@b#dUyd>`2JC0=xa_fIm8{5um zr-!ApXZhC8@=vC2WyxO|!@0Km)h8ep*`^he92$@YwP>VcdoS5OC^s38e#7RPsg4j+ zbVGG}WRSET&ZfrcR(x~k8n1rTP%CnfUNKUonD$P?FtNFF#cn!wEIab-;jU=B1dHK@ z(;(yAQJ`O$sMn>h;pf^8{JISW%d+@v6@CnXh9n5TXGC}?FI9i-D0OMaIg&mAg=0Kn zNJ7oz5*ReJukD55fUsMuaP+H4tDN&V9zfqF@ zr=#ecUk9wu{0;!+gl;3Bw=Vn^)z$ahVhhw)io!na&9}LmWurLb0zubxK=UEnU*{5P z+SP}&*(iBKSO4{alBHaY^)5Q=mZ+2OwIooJ7*Q5XJ+2|q`9#f?6myq!&oz?klihLq z4C)$XP!BNS0G_Z1&TM>?Jk{S~{F3n83ioli=IO6f%wkvCl(RFFw~j0tb{GvXTx>*sB0McY0s&SNvj4+^h`9nJ_wM>F!Uc>X}9PifQekn0sKI2SAJP!a4h z5cyGTuCj3ZBM^&{dRelIlT^9zcfaAuL5Y~bl!ppSf`wZbK$z#6U~rdclk``e+!qhe z6Qspo*%<)eu6?C;Bp<^VuW6JI|Ncvyn+LlSl;Mp22Bl7ARQ0Xc24%29(ZrdsIPw&-=yHQ7_Vle|5h>AST0 zUGX2Zk34vp?U~IHT|;$U86T+UUHl_NE4m|}>E~6q``7hccCaT^#y+?wD##Q%HwPd8 zV3x4L4|qqu`B$4(LXqDJngNy-{&@aFBvVsywt@X^}iH7P%>bR?ciC$I^U-4Foa`YKI^qDyGK7k%E%c_P=yzAi`YnxGA%DeNd++j3*h^ z=rn>oBd0|~lZ<6YvmkKY*ZJlJ;Im0tqgWu&E92eqt;+NYdxx`eS(4Hw_Jb5|yVvBg z*tbdY^!AN;luEyN4VRhS@-_DC{({ziH{&Z}iGElSV~qvT>L-8G%+yEL zX#MFOhj{InyKG=mvW-<1B@c-}x$vA(nU?>S>0*eN#!SLzQ)Ex7fvQ)S4D<8|I#N$3 zT5Ei`Z?cxBODHX8(Xp73v`IsAYC@9b;t}z0wxVuQSY1J^GRwDPN@qbM-ZF48T$GZ< z8WU+;Pqo?{ghI-KZ-i*ydXu`Ep0Xw^McH_KE9J0S7G;x8Fe`DVG?j3Pv=0YzJ}yZR z%2=oqHiUjvuk0~Ca>Kol4CFi0_xQT~;_F?=u+!kIDl-9g`#ZNZ9HCy17Ga1v^Jv9# z{T4Kb1-AzUxq*MutfOWWZgD*HnFfyYg0&e9f(5tZ>krPF6{VikNeHoc{linPPt#Si z&*g>(c54V8rT_AX!J&bNm-!umPvOR}vDai#`CX___J#=zeB*{4<&2WpaDncZsOkp* zsg<%@@rbrMkR_ux9?LsQxzoBa1s%$BBn6vk#{&&zUwcfzeCBJUwFYSF$08qDsB;gWQN*g!p8pxjofWbqNSZOEKOaTx@+* zwdt5*Q47@EOZ~EZL9s?1o?A%9TJT=Ob_13yyugvPg*e&ZU(r6^k4=2+D-@n=Hv5vu zSXG|hM(>h9^zn=eQ=$6`JO&70&2|%V5Lsx>)(%#;pcOfu>*nk_3HB_BNaH$`jM<^S zcSftDU1?nL;jy)+sfonQN}(}gUW?d_ikr*3=^{G)=tjBtEPe>TO|0ddVB zTklrSHiW+!#26frPXQQ(YN8DG$PZo?(po(QUCCf_OJC`pw*uey00%gmH!`WJkrKXj2!#6?`T25mTu9OJp2L8z3! z=arrL$ZqxuE{%yV)14Kd>k}j7pxZ6#$Dz8$@WV5p8kTqN<-7W)Q7Gt2{KoOPK_tZ| zf2WG~O5@{qPI+W<4f_;reuFVdO^5`ADC1!JQE|N`s3cq@(0WB!n0uh@*c{=LAd;~} zyGK@hbF-Oo+!nN)@i*O(`@FA#u?o=~e{`4O#5}z&=UkU*50fOrzi11D^&FOqe>wii z?*k+2|EcUs;Gx{!@KBT~>PAwLrIDT7Th=Utu?~?np@t^gFs?zgX=D${RwOY^WGh-+ z+#4$066ISh8eYW#FXWp~S`<*%O^ZuItL1Tyqt8#tZ zY120E;^VG`!lZn&3sPd$RkdHpU#|w+bYV)pJC|SH9g%|5IkxVTQcBA4CL0}$&}ef@ zW^Vtj%M;;_1xxP9x#ex17&4N*{ksO*_4O}xYu(p*JkL#yr}@7b)t5X?%CY<+s5_MJ zuiqt+N_;A(_)%lumoyRFixWa-M7qK_9s6<1X?JDa9fP!+_6u~~M$5L=ipB=7(j#f< zZ34J%=bs549%~_mA(|={uZNs_0?o7;-LBP(ZRnkd{-^|2|=4vUTmtByHL8 zEph`(LSEzQj68a+`d$V<45J7cyv^#|^|%fD#si1Nx!4NW*`l*{->HEWNh6-|g>-=r zXmQ|-i}Ku$ndUeHQ^&ieT!Lf}vf6GaqW9$DJ2NWrqwPY%%4nip$@vK$nRp*_C-v<| zuKz~ZyN&<%!NS26&x?jhy+@awJipMQ-8(X4#Ae5??U<1QMt1l9R=w9fAnEF}NYu$2 z>6}Vkc zIb*A?G*z8^IvibmBKn_u^5&T_1oey0gZS2~obf(#xk=erZGTEdQnt3DMGM+0oPwss zj5zXD;(oWhB_T@~Ig#9@v)AKtXu3>Inmgf@A|-lD-1U>cNyl3h?ADD9)GG4}zUGPk zZzaXe!~Kf?<~@$G?Uql3t8jy9{2!doq4=J}j9ktTxss{p6!9UdjyDERlA*xZ!=Q)KDs5O)phz>Vq3BNGoM(H|=1*Q4$^2fTZw z(%nq1P|5Rt81}SYJpEEzMPl5VJsV5&4e)ZWKDyoZ>1EwpkHx-AQVQc8%JMz;{H~p{=FXV>jIxvm4X*qv52e?Y-f%DJ zxEA165GikEASQ^fH6K#d!Tpu2HP{sFs%E=e$gYd$aj$+xue6N+Wc(rAz~wUsk2`(b z8Kvmyz%bKQxpP}~baG-rwYcYCvkHOi zlkR<=>ZBTU*8RF_d#Bl@zZsRIhx<%~Z@Z=ik z>adw3!DK(8R|q$vy{FTxw%#xliD~6qXmY^7_9kthVPTF~Xy1CfBqbU~?1QmxmU=+k z(ggxvEuA;0e&+ci-zQR{-f7aO{O(Pz_OsEjLh_K>MbvoZ4nxtk5u{g@nPv)cgW_R} z9}EA4K4@z0?7ue}Z(o~R(X&FjejUI2g~08PH1E4w>9o{)S(?1>Z0XMvTb|;&EuyOE zGvWNpYX)Nv<8|a^;1>bh#&znEcl-r!T#pn= z4$?Yudha6F%4b>*8@=BdtXXY4N+`U4Dmx$}>HeVJk-QdTG@t!tVT#0(LeV0gvqyyw z2sEp^9eY0N`u10Tm4n8No&A=)IeEC|gnmEXoNSzu!1<4R<%-9kY_8~5Ej?zRegMn78wuMs#;i&eUA0Zk_RXQ3b&TT} z;SCI=7-FUB@*&;8|n>(_g^HGf3@QODE3LpmX~ELnymQm{Sx9xrKS zK29p~?v@R$0=v6Dr5aW>-!{+h@?Q58|Kz8{{W`%J+lDAdb&M5VHrX_mDY;1-JLnf)ezmPau$)1;=`-FU=-r-83tX=C`S#}GZufju zQ>sXNT0Ny=k@nc%cFnvA_i4SC)?_ORXHq8B4D%el1uPX`c~uG#S1M7C+*MMqLw78E zhY2dI8@+N^qrMI1+;TUda(vGqGSRyU{Fnm`aqrr7bz42c5xsOO-~oZpkzorD1g}Y<6rk&3>PsSGy}W?MtqFky@A(X# zIuNZK0cK?^=;PUAu>j0#HtjbHCV*6?jzA&OoE$*Jlga*}LF`SF?WLhv1O|zqC<>*> zYB;#lsYKx0&kH@BFpW8n*yDcc6?;_zaJs<-jPSkCsSX-!aV=P5kUgF@Nu<{a%#K*F z134Q{9|YX7X(v$62_cY3^G%t~rD>Q0z@)1|zs)vjJ6Jq9;7#Ki`w+eS**En?7;n&7 zu==V3T&eFboN3ZiMx3D8qYc;VjFUk_H-WWCau(VFXSQf~viH0L$gwD$UfFHqNcgN`x}M+YQ6RnN<+@t>JUp#)9YOkqst-Ga?{FsDpEeX0(5v{0J~SEbWiL zXC2}M4?UH@u&|;%0y`eb33ldo4~z-x8zY!oVmV=c+f$m?RfDC35mdQ2E>Pze7KWP- z>!Bh<&57I+O_^s}9Tg^k)h7{xx@0a0IA~GAOt2yy!X%Q$1rt~LbTB6@Du!_0%HV>N zlf)QI1&gvERKwso23mJ!Ou6ZS#zCS5W`gxE5T>C#E|{i<1D35C222I33?Njaz`On7 zi<+VWFP6D{e-{yiN#M|Jgk<44u1TiMI78S5W`Sdb5f+{zu34s{CfWN7a3Cf^@L%!& zN$?|!!9j2c)j$~+R6n#891w-z8(!oBpL2K=+%a$r2|~8-(vQj5_XT`<0Ksf;oP+tz z9CObS!0m)Tgg`K#xBM8B(|Z)Wb&DYL{WTYv`;A=q6~Nnx2+!lTIXtj8J7dZE!P_{z z#f8w6F}^!?^KE#+ZDv+xd5O&3EmomZzsv?>E-~ygGum45fk!SBN&|eo1rKw^?aZJ4 E2O(~oYXATM 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 @@ -+ -+ -+ -+ -+ -+