diff --git a/node_modules/@rnmapbox/maps/.eslintrc.js b/node_modules/@rnmapbox/maps/.eslintrc.js
new file mode 100644
index 0000000..1830356
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.eslintrc.js
@@ -0,0 +1,112 @@
+module.exports = {
+ root: true,
+ parser: '@babel/eslint-parser',
+ plugins: ['react', 'react-native', 'import'],
+ env: {
+ jest: true,
+ },
+ settings: {
+ react: {
+ version: require('./package.json').dependencies.react,
+ pragma: 'React',
+ },
+ 'import/resolver': {
+ node: {
+ extensions: ['.js', '.jsx'],
+ },
+ },
+ 'import/ignore': ['react-native'],
+ parserOptions: {
+ ecmaFeatures: {
+ jsx: true,
+ modules: true,
+ },
+ },
+ },
+ globals: {
+ fetch: true,
+ FormData: true,
+ requestAnimationFrame: true,
+ cancelAnimationFrame: true,
+ WebSocket: true,
+ __DEV__: true,
+ window: true,
+ document: true,
+ navigator: true,
+ XMLSerializer: true,
+ },
+ extends: [
+ 'eslint:recommended',
+ 'plugin:react/recommended',
+ 'plugin:jest/recommended',
+ '@react-native',
+ 'prettier',
+ ],
+ rules: {
+ 'react/no-deprecated': 'warn',
+ 'react/no-string-refs': 'warn',
+ 'import/named': [2],
+ 'import/no-named-default': [0],
+ 'import/order': [
+ 'error',
+ {
+ groups: ['builtin', 'external', 'parent', 'sibling', 'index'],
+ 'newlines-between': 'always',
+ },
+ ],
+ 'import/exports-last': [0],
+ 'import/no-useless-path-segments': [2],
+ camelcase: [0],
+ 'no-console': [0],
+ 'import/prefer-default-export': 'off',
+ 'jsx-a11y/href-no-hash': 'off',
+ 'react/prop-types': [0],
+ quotes: [2, 'single'],
+ 'eol-last': [0],
+ 'no-continue': [1],
+ 'class-methods-use-this': [0],
+ 'no-bitwise': [1],
+ 'prefer-destructuring': [1],
+ 'consistent-return': [0],
+ 'no-warning-comments': [1],
+ 'no-mixed-requires': [0],
+ 'no-return-assign': 0,
+ 'no-underscore-dangle': [0],
+ 'no-await-in-loop': 0,
+ 'no-restricted-syntax': 0,
+ 'no-use-before-define': ['error', { functions: false }],
+ 'no-unused-expressions': ['error', { allowTaggedTemplates: true }],
+ 'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
+ 'react-native/no-inline-styles': 0,
+ '@typescript-eslint/no-explicit-any': ['error', { ignoreRestArgs: true }],
+ },
+ ignorePatterns: ['**/rnmapbox.web.symlink', 'plugin/build/', 'example/dist'],
+ overrides: [
+ {
+ // Match TypeScript Files
+ files: ['**/*.{ts,tsx}'],
+
+ parserOptions: {
+ project: [
+ './tsconfig.json',
+ './example/tsconfig.json',
+ './scripts/tsconfig.json',
+ './plugin/src/__tests__/tsconfig.eslint.json',
+ ],
+ },
+ plugins: ['@typescript-eslint'],
+ extends: [
+ 'eslint:recommended',
+ 'plugin:react/recommended',
+ '@react-native',
+ 'plugin:@typescript-eslint/recommended',
+ 'prettier',
+ ],
+ rules: {
+ 'no-shadow': 'off',
+ 'import/named': 'off',
+ 'react-native/no-inline-styles': 0,
+ },
+ },
+ ],
+};
diff --git a/node_modules/@rnmapbox/maps/.gitattributes b/node_modules/@rnmapbox/maps/.gitattributes
new file mode 100644
index 0000000..d42ff18
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.gitattributes
@@ -0,0 +1 @@
+*.pbxproj -text
diff --git a/node_modules/@rnmapbox/maps/.github/FUNDING.yml b/node_modules/@rnmapbox/maps/.github/FUNDING.yml
new file mode 100644
index 0000000..a557801
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/FUNDING.yml
@@ -0,0 +1 @@
+github: [rnmapbox, mfazekas]
diff --git a/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_report.yml b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000..05c77cc
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,121 @@
+name: "🪲 Bug Report"
+description: This template should be used for reporting bugs and defects.
+title: "[Bug]: "
+labels: 'bug 🪲'
+body:
+- type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report!
+- type: dropdown
+ id: mapbox-implementation
+ attributes:
+ label: Mapbox Implementation
+ description: |-
+ Check `RNMapboxMapsImpl` in your Podfile/gradle files. Defaults to `Maplibre`.
+ options:
+ - Mapbox
+ - Mapbox GL
+ - Maplibre
+ validations:
+ required: true
+- type: input
+ id: mapbox-version
+ attributes:
+ label: Mapbox Version
+ description: |-
+ Check `RNMapboxMapsVersion` in your Podfile/gradle files, set to `default` if you don't cusomize the version
+ placeholder: 10.7.0
+ validations:
+ required: true
+- type: input
+ id: react-native-version
+ attributes:
+ label: React Native Version
+ description: |-
+ The React Native version
+ placeholder: 0.73.2
+ validations:
+ required: true
+- type: dropdown
+ id: platform
+ attributes:
+ label: Platform
+ multiple: true
+ description: |-
+ The platform where you experience the issue
+ options:
+ - iOS
+ - Android
+ validations:
+ required: true
+- type: input
+ id: rnmapbox-version
+ attributes:
+ label: "`@rnmapbox/maps` version"
+ description: |-
+ The version of `@rnmapbox/maps`, such as `#main`, `10.0.0-beta.32`
+ value: 10.0.0-beta.11
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Standalone component to reproduce
+ description: |-
+ - Use [our BugReportTemplate](https://github.com/rnmapbox/maps/blob/main/example/src/examples/BugReportExample.js) screens as a starting point.
+ - Component should be self contained - no extra libraries, external data, no parameters
+ - Do not include setAccessToken or access token istelf.
+ value: |-
+ ```javascript
+ import React from 'react';
+ import {
+ MapView,
+ ShapeSource,
+ LineLayer,
+ Camera,
+ } from '@rnmapbox/maps';
+
+ const aLine = {
+ type: 'LineString',
+ coordinates: [
+ [-74.00597, 40.71427],
+ [-74.00697, 40.71527],
+ ],
+ };
+
+ class BugReportExample extends React.Component {
+ render() {
+ return (
+
+
+
+
+
+
+ );
+ }
+ }
+ ```
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Observed behavior and steps to reproduce
+ description: |-
+ - Please include as much evidence as possible (traces, videos, screenshots etc.)
+- type: textarea
+ attributes:
+ label: Expected behavior
+ description: |-
+ - Please include the expected behavior and any resources supporting this expected behavior.
+- type: textarea
+ attributes:
+ label: Notes / preliminary analysis
+ description: |-
+ - include your initial analysis, if available
+- type: textarea
+ attributes:
+ label: Additional links and references
+ description: |-
+ - Links to traces, videos et
+
diff --git a/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_setup.md b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_setup.md
new file mode 100644
index 0000000..dedc666
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/bug_setup.md
@@ -0,0 +1,27 @@
+---
+name: 🪲 Setup/installation error
+about: This template should be used for reporting bugs and defects with project setup
+labels: 'bug-setup 🪲'
+assignees: ''
+---
+
+
+## Environment
+- Dev OS: [e.g. OSX 11.0.1, Win10]
+- @rnmapbox/maps version: [eg. 10.0.15]
+- React Native version: [eg. 0.72.6]
+- Expo version: [eg. 49.0.0]
+
+
+## Steps to reproduce
+
+
+
+```sh
+react-native init sample --version react-native@0.60.5
+cd sample
+npm install rnmapbox/maps#main --save
+# or released version `npm install @rnmapbox/maps@8.0.0-rc1 --save`
+react-native run-android
+```
+
diff --git a/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/config.yml b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..0e91ef0
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,8 @@
+blank_issues_enabled: false
+contact_links:
+ - name: 🤔 Questions and Help
+ url: https://github.com/rnmapbox/maps/discussions/categories/q-a
+ about: Looking for help with your app? Please use discussions or gitter or stack overflow
+ - name: 🚀 Discussions and Proposals
+ url: https://github.com/rnmapbox/maps/discussions/categories/ideas
+ about: Discuss the future of RNMapbox, submit feature requests
diff --git a/node_modules/@rnmapbox/maps/.github/dependabot.yml b/node_modules/@rnmapbox/maps/.github/dependabot.yml
new file mode 100644
index 0000000..87169ee
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/dependabot.yml
@@ -0,0 +1,42 @@
+version: 2
+updates:
+ # root
+ - package-ecosystem: "npm"
+ directory: "/"
+ schedule:
+ interval: "monthly"
+ labels:
+ - "🤖 dependabot 🤖"
+ open-pull-requests-limit: 1
+ pull-request-branch-name:
+ separator: "-"
+ ignore: # ignore updates for react-native deps, think about updating, once react-native is updated
+ - dependency-name: "@babel/core"
+ - dependency-name: "@babel/runtime"
+ - dependency-name: "@react-native-community/eslint-config"
+ - dependency-name: "eslint"
+ - dependency-name: "jest"
+ - dependency-name: "metro-react-native-babel-preset"
+ - dependency-name: "react-test-renderer"
+ - dependency-name: "react"
+ - dependency-name: "react-native"
+ - dependency-name: "jest-cli"
+ # example
+ - package-ecosystem: "npm"
+ directory: "/example"
+ schedule:
+ interval: "monthly"
+ labels:
+ - "🤖 dependabot 🤖"
+ open-pull-requests-limit: 1
+ pull-request-branch-name:
+ separator: "-"
+ # gh-actions workflow files
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "monthly"
+ pull-request-branch-name:
+ separator: "-"
+ labels:
+ - "🤖 dependabot 🤖"
diff --git a/node_modules/@rnmapbox/maps/.github/label-actions.yml b/node_modules/@rnmapbox/maps/.github/label-actions.yml
new file mode 100644
index 0000000..24f364d
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/label-actions.yml
@@ -0,0 +1,27 @@
+# Configuration for Label Actions - https://github.com/dessant/label-actions
+"Needs: Issue Template":
+ comment: >
+ :wave: @{issue-author}, please respect our issue template required fields are missing.
+ # Close the issue
+ close: true
+"Needs: Standalone component":
+ comment: >
+ :wave: @{issue-author}, please include a [complete, isolated example](https://github.com/rnmapbox/maps/wiki/Issue-missing-standalone-component), if you included a component make sure that it's complete, so contains an `MapView`, also all variables etc should be defined. Please note that this is a community project and we have very limited resources - please see our notes on [Support](https://github.com/rnmapbox/maps/wiki/Support).
+ # Close the issue
+ close: true
+"question":
+ comment: >
+ :thinking: @{issue-author}, this is rather a question than an issue please use our [discussions](https://github.com/rnmapbox/maps/discussions) or [gitter](https://gitter.im/rnmapbox/Lobby) or stackoverflow for this.
+ # Close the issue
+ close: true
+"stale":
+ comment: >
+ :thinking: @{issue-author}, closing the issue for lack of activity, if the issue still persist, pls open a new one with steps to reproduce on recent versions
+ # Close the issue
+ close: true
+"Needs: Project setup instructions":
+ comment: >
+ @{issue-author}, sorry for us to look into project setup issues, we require steps to reproduce from `react-native init ...`. If you cannot reproduce starting with a blank project, then compare your setup with a blank working one.
+ close: true
+
+
diff --git a/node_modules/@rnmapbox/maps/.github/pull_request_template.md b/node_modules/@rnmapbox/maps/.github/pull_request_template.md
new file mode 100644
index 0000000..ec8a6e8
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/pull_request_template.md
@@ -0,0 +1,38 @@
+
+
+## Description
+
+Fixes #
+
+
+
+Added `your feature` that allows ...
+
+## Checklist
+
+
+
+- [ ] I've read `CONTRIBUTING.md`
+- [ ] I updated the doc/other generated code with running `yarn generate` in the root folder
+- [ ] I have tested the new feature on `/example` app.
+ - [ ] In V11 mode/ios
+ - [ ] In New Architecture mode/ios
+ - [ ] In V11 mode/android
+ - [ ] In New Architecture mode/android
+- [ ] I added/updated a sample - if a new feature was implemented (`/example`)
+
+## Screenshot OR Video
+
+
+
+## Component to reproduce the issue you're fixing
+
+
+```jsx
+
+```
diff --git a/node_modules/@rnmapbox/maps/.github/stale.yml b/node_modules/@rnmapbox/maps/.github/stale.yml
new file mode 100644
index 0000000..7bf58a7
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/stale.yml
@@ -0,0 +1,11 @@
+daysUntilStale: 60
+daysUntilClose: 7
+exemptLabels:
+ - pinned
+ - security
+staleLabel: wontfix
+markComment: >
+ This issue has been automatically marked as stale because it has not had
+ recent activity. It will be closed if no further activity occurs. Thank you
+ for your contributions.
+closeComment: false
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/android-actions.yml b/node_modules/@rnmapbox/maps/.github/workflows/android-actions.yml
new file mode 100644
index 0000000..2fc5bcb
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/android-actions.yml
@@ -0,0 +1,85 @@
+name: Android Build
+
+on:
+ workflow_call:
+ inputs:
+ env_name:
+ required: true
+ default: default
+ type: string
+ ref:
+ required: false
+ type: string
+ NVMRC:
+ required: true
+ type: string
+ MAP_IMPL:
+ description: "The map implementation to use (mapbox,mapbox11)"
+ default: mapbox
+ required: false
+ type: string
+ NEW_ARCH:
+ description: "If build with new architecture or not"
+ default: false
+ required: false
+ type: boolean
+ secrets:
+ MAPBOX_ACCESS_TOKEN:
+ required: true
+ MAPBOX_DOWNLOAD_TOKEN:
+ required: true
+ ENV_MAPBOX_ACCESS_TOKEN:
+ required: false
+ ENV_MAPBOX_DOWNLOAD_TOKEN:
+ required: false
+
+jobs:
+ build_example:
+ name: Android Example Build ${{ inputs.NEW_ARCH && 'Fabric' || 'Paper' }} ${{ inputs.MAP_IMPL }}
+ runs-on: ubuntu-latest
+ environment: ${{ inputs.env_name }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref == '' }}
+
+ - name: Checkout fork
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref != '' }}
+ with:
+ ref: ${{ inputs.ref }}
+
+ - name: Setup node ${{ inputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ inputs.NVMRC }}
+
+ - name: Setup JDK zulu 17
+ uses: actions/setup-java@v3
+ with:
+ distribution: 'zulu'
+ java-version: '17'
+
+ - run: |
+ mkdir -p ~/.gradle/
+ echo MAPBOX_DOWNLOADS_TOKEN=$MAPBOX_DOWNLOAD_TOKEN > ~/.gradle/gradle.properties
+ working-directory: example
+ env:
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN || secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ - run: echo $MAPBOX_ACCESS_TOKEN > ./accesstoken
+ working-directory: example
+ env:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN || secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+
+ - run: yarn install --network-timeout 1000000
+ working-directory: example
+
+ - run: yarn postinstall
+ working-directory: example
+
+ - run: ./gradlew assemble
+ working-directory: example/android
+ env:
+ CI_MAP_IMPL: ${{ inputs.MAP_IMPL }}
+ ORG_GRADLE_PROJECT_newArchEnabled: ${{ inputs.NEW_ARCH && 'true' || 'false' }}
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/bump-version.yml b/node_modules/@rnmapbox/maps/.github/workflows/bump-version.yml
new file mode 100644
index 0000000..c9da9d0
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/bump-version.yml
@@ -0,0 +1,55 @@
+# This is a basic workflow that is manually triggered
+
+name: Bump version
+
+# Controls when the action will run. Workflow runs when manually triggered using the UI
+# or API.
+on:
+ workflow_dispatch:
+ # Inputs the workflow accepts.
+ inputs:
+ version:
+ # Friendly description to be shown in the UI instead of 'name'
+ description: 'Semver type of new version (major / minor / patch)'
+ # Input has to be provided for the workflow to run
+ required: true
+ type: choice
+ options:
+ - patch
+ - minor
+ - major
+ - prerelease --preid=beta
+ - prerelease --preid=rc
+
+# A workflow run is made up of one or more jobs that can run sequentially or in parallel
+jobs:
+ # This workflow contains a single job called "bump-version"
+ bump-version:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+
+ # Steps represent a sequence of tasks that will be executed as part of the job
+ steps:
+ # Check out the content (source branch). Use a deploy key so that
+ # when we push changes, it will trigger the release workflow
+ # run that runs on: tag. (Using the GitHub token would
+ # not run the workflow to prevent infinite recursion.)
+ - name: Check out source
+ uses: actions/checkout@v3
+ with:
+ ssh-key: ${{ secrets.DEPLOY_KEY }}
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: '16'
+
+ - name: Setup Git
+ run: |
+ git config user.name 'RNMapbox robot'
+ git config user.email 'rnmapbox@gmail.com'
+ - name: bump version
+ run: npm version ${{ github.event.inputs.version }}
+
+ - name: Push latest version
+ run: git push origin main --follow-tags
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/check-code-example-in-issue.yml b/node_modules/@rnmapbox/maps/.github/workflows/check-code-example-in-issue.yml
new file mode 100644
index 0000000..ba486cd
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/check-code-example-in-issue.yml
@@ -0,0 +1,31 @@
+name: CheckCodeExampleInIssue
+
+on:
+ issues:
+ types: [opened, edited]
+
+jobs:
+ check-issue-example-code:
+ # The type of runner that the job will run on
+ runs-on: ubuntu-latest
+
+ permissions:
+ issues: write
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: '18'
+
+ - name: run lint-code-example-in-issues.js
+ run: |
+ npm install
+ node lint-code-example-in-issues.js
+ working-directory: ./scripts/actions/lint-code-example-in-issues
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+
+
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/ci-for-forked-repos.yml b/node_modules/@rnmapbox/maps/.github/workflows/ci-for-forked-repos.yml
new file mode 100644
index 0000000..040a928
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/ci-for-forked-repos.yml
@@ -0,0 +1,17 @@
+on:
+ pull_request_target:
+ branches: [ main ]
+
+jobs:
+ call_ci_requiring_tokens:
+ if: github.repository == 'rnmapbox/maps' && github.event.pull_request.head.repo.fork == true
+ name: "CI requiring tokens"
+ uses: ./.github/workflows/ci-requiring-tokens.yml
+ with:
+ NVMRC: v18.18.0
+ env_name: CI with Mapbox Tokens
+ ref: ${{ github.event.pull_request.head.sha }}
+ secrets:
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/ci-requiring-tokens.yml b/node_modules/@rnmapbox/maps/.github/workflows/ci-requiring-tokens.yml
new file mode 100644
index 0000000..fb5ebd4
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/ci-requiring-tokens.yml
@@ -0,0 +1,129 @@
+name: CI Builds requiring mapbox tokens
+
+on:
+ workflow_call:
+ inputs:
+ NVMRC:
+ required: true
+ type: string
+ env_name:
+ required: false
+ type: string
+ default: default
+ ref:
+ required: false
+ type: string
+ secrets:
+ MAPBOX_ACCESS_TOKEN:
+ required: false
+ MAPBOX_DOWNLOAD_TOKEN:
+ required: false
+ ENV_MAPBOX_ACCESS_TOKEN:
+ required: false
+ ENV_MAPBOX_DOWNLOAD_TOKEN:
+ required: false
+
+concurrency:
+ group: ${{ github.head_ref || github.run_id }}-ci-with-tokens
+ cancel-in-progress: true
+
+jobs:
+ call_android_workflow:
+ name: "Android/Mapbox"
+ uses: ./.github/workflows/android-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ call_android_workflow_fabric:
+ name: "Android/Mapbox/Fabric"
+ uses: ./.github/workflows/android-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox
+ NEW_ARCH: true
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+
+ call_android_workflow_11:
+ name: "Android/Mapbox11"
+ uses: ./.github/workflows/android-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox11
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ call_ios_workflow:
+ name: "iOS/Mapbox"
+ uses: ./.github/workflows/ios-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ call_ios_workflow_fabric:
+ name: "iOS/Mapbox/Fabric"
+ uses: ./.github/workflows/ios-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox
+ NEW_ARCH: true
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ call_ios_workflow_11:
+ name: "iOS/Mapbox11"
+ uses: ./.github/workflows/ios-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ MAP_IMPL: mapbox11
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ call_web_workflow:
+ name: "Web/Mapbox"
+ uses: ./.github/workflows/web-actions.yml
+ with:
+ env_name: ${{ inputs.env_name }}
+ ref: ${{ inputs.ref }}
+ NVMRC: ${{ inputs.NVMRC }}
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+ ENV_MAPBOX_ACCESS_TOKEN: ${{ secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+ ENV_MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/ios-actions.yml b/node_modules/@rnmapbox/maps/.github/workflows/ios-actions.yml
new file mode 100644
index 0000000..e337c38
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/ios-actions.yml
@@ -0,0 +1,140 @@
+name: iOS Build & Detox
+
+on:
+ workflow_call:
+ inputs:
+ env_name:
+ required: true
+ default: default
+ type: string
+ ref:
+ required: false
+ type: string
+ NVMRC:
+ required: true
+ type: string
+ MAP_IMPL:
+ description: "The map implementation to use (mapbox,mapbox11)"
+ default: mapbox
+ required: false
+ type: string
+ NEW_ARCH:
+ description: "If build with new architecture or not"
+ default: false
+ required: false
+ type: boolean
+ secrets:
+ MAPBOX_ACCESS_TOKEN:
+ required: true
+ MAPBOX_DOWNLOAD_TOKEN:
+ required: true
+ ENV_MAPBOX_ACCESS_TOKEN:
+ required: false
+ ENV_MAPBOX_DOWNLOAD_TOKEN:
+ required: false
+
+jobs:
+ build:
+ name: iOS Example Build ${{ inputs.NEW_ARCH && 'Fabric' || 'Paper' }} ${{ inputs.MAP_IMPL }}
+ runs-on: macos-13
+ timeout-minutes: 55
+ environment: ${{ inputs.env_name }}
+
+ defaults:
+ run:
+ working-directory: ./example
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref == '' }}
+
+ - name: Checkout fork
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref != '' }}
+ with:
+ ref: ${{ inputs.ref }}
+
+ - name: Access Token
+ run: echo $MAPBOX_ACCESS_TOKEN > ./accesstoken
+ env:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN || secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+
+ - name: Setup .netrc with MAPBOX_DOWNLOAD_TOKEN
+ run: |
+ echo 'machine api.mapbox.com' >> ~/.netrc
+ echo 'login mapbox' >> ~/.netrc
+ echo "password $MAPBOX_DOWNLOAD_TOKEN" >> ~/.netrc
+ chmod 0600 ~/.netrc
+ if: "${{ env.MAPBOX_DOWNLOAD_TOKEN != '' }}"
+ env:
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN || secrets.ENV_MAPBOX_DOWNLOAD_TOKEN }}
+
+ - name: Setup node ${{ inputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ inputs.NVMRC }}
+
+ - name: Cache node_modules
+ uses: actions/cache@v3
+ id: yarn-cache
+ with:
+ path: node_modules
+ key: node-modules-${{ hashFiles('**/yarn.lock') }}
+
+ - name: Install Yarn Dependencies
+ if: steps.yarn-cache.outputs.cache-hit != 'true'
+ run: yarn install --network-timeout 1000000
+
+ - run: yarn postinstall
+ working-directory: example
+
+ - name: Cache Pods
+ uses: actions/cache@v3
+ id: pods-cache
+ with:
+ path: ios/Pods
+ key: pods-${{ hashFiles('**/Podfile.lock') }}-${{ inputs.MAP_IMPL }}-${{ inputs.NEW_ARCH }}}
+
+ - name: Check CocoaPods version
+ id: cocoapods-version
+ run: |
+ pod --version > version.txt
+ cat version.txt
+ echo "version=$(cat version.txt)" >> $GITHUB_OUTPUT
+
+ - name: Upgrade CocoaPods
+ if: steps.cocoapods-version.outputs.version == '1.15.0'
+ run: sudo gem install cocoapods -v 1.15.2
+
+ - name: Install Pod Dependencies
+ if: steps.pods-cache.outputs.cache-hit != 'true'
+ run: cd ios && pod --version && pod update MapboxMaps hermes-engine RCT-Folly Turf SocketRocket && pod install
+ env:
+ CI_MAP_IMPL: ${{ inputs.MAP_IMPL }}
+ RCT_NEW_ARCH_ENABLED: ${{ inputs.NEW_ARCH && 1 || 0 }}
+ NO_FLIPPER: 1
+
+ - name: Install Detox Dependencies
+ run: |
+ brew tap wix/brew
+ brew install applesimutils
+ brew install xcbeautify
+
+ - name: Build for detox
+ run: set -o pipefail && NSUnbufferedIO=YES yarn detox build --configuration ios.debug.ci 2>&1
+
+ - name: Test with detox
+ if: inputs.NEW_ARCH != 1
+ run: |
+ npx detox --version
+ yarn detox test --configuration ios.debug.ci --debug-synchronization 500 --loglevel trace --record-logs all --take-screenshots all | xcbeautify -qq --renderer github-actions
+ env:
+ SKIP_TESTS_NO_METAL: ${{ inputs.MAP_IMPL == 'mapbox' || inputs.MAP_IMPL == 'mapbox11' }}
+
+ - name: Store Detox artifacts on test failure
+ uses: actions/upload-artifact@v3
+ if: failure()
+ with:
+ name: detox-artifacts
+ path: example/artifacts
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/label-actions.yml b/node_modules/@rnmapbox/maps/.github/workflows/label-actions.yml
new file mode 100644
index 0000000..c58942c
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/label-actions.yml
@@ -0,0 +1,17 @@
+# Configuration for Label Actions - https://github.com/dessant/label-actions
+
+name: "Label Actions"
+
+on:
+ issues:
+ types: labeled
+
+permissions:
+ contents: read
+ issues: write
+
+jobs:
+ action:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: dessant/label-actions@v2
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/on-push.yml b/node_modules/@rnmapbox/maps/.github/workflows/on-push.yml
new file mode 100644
index 0000000..d6e504f
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/on-push.yml
@@ -0,0 +1,97 @@
+name: CI
+on:
+ push:
+ branches:
+ - 'main'
+ - 'v8'
+ - 'v10.0'
+ pull_request:
+
+concurrency:
+ group: ${{ github.head_ref || github.run_id }}
+ cancel-in-progress: true
+
+jobs:
+ lint_test_generate:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v3
+
+ - name: Read .nvmrc
+ run: echo ::set-output name=NVMRC::$(cat .nvmrc)
+ id: nvm
+
+ - name: Setup node ${{ steps.nvm.outputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ steps.nvm.outputs.NVMRC }}
+
+ - name: Install
+ run: yarn install --network-timeout 1000000
+
+ - name: Lint
+ run: yarn lint
+
+ - name: Type check
+ run: yarn type:check
+
+ - name: Example/install
+ run: yarn install --ignore-scripts --network-timeout 1000000
+ working-directory: example
+
+ - name: Example type check
+ run: yarn type:check
+ working-directory: example
+
+ - name: Test
+ run: yarn unittest
+
+ - name: Generate
+ run: yarn generate
+
+ outputs:
+ NVMRC: ${{ steps.nvm.outputs.NVMRC }}
+
+ has_mapbox_token:
+ runs-on: ubuntu-latest
+ outputs:
+ has-mapbox-token: ${{ steps.has-mapbox-token.outputs.defined }}
+ steps:
+ - id: has-mapbox-token
+ env:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ if: "${{ env.MAPBOX_ACCESS_TOKEN != '' }}"
+ run: echo "::set-output name=defined::true"
+
+ call_ci_requiring_tokens:
+ name: "CI requiring tokens"
+ needs: [lint_test_generate,has_mapbox_token]
+ uses: ./.github/workflows/ci-requiring-tokens.yml
+ with:
+ NVMRC: ${{ needs.lint_test_generate.outputs.NVMRC }}
+ if: needs.has_mapbox_token.outputs.has-mapbox-token == 'true'
+ secrets:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
+ MAPBOX_DOWNLOAD_TOKEN: ${{ secrets.MAPBOX_DOWNLOAD_TOKEN }}
+
+ publish:
+ if: startsWith(github.ref, 'refs/tags/') && (github.event_name == 'push')
+ needs: [lint_test_generate]
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v3
+
+ - name: Setup node ${{ steps.nvm.outputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ needs.lint_test_generate.outputs.NVMRC }}
+ registry-url: https://registry.npmjs.org/
+
+ - name: Install and Publish
+ run: npm install --force && npm publish
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/publish.yml b/node_modules/@rnmapbox/maps/.github/workflows/publish.yml
new file mode 100644
index 0000000..92ed0a6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/publish.yml
@@ -0,0 +1,29 @@
+name: Publish to NPM
+on:
+ release:
+ types: [created]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Read .nvmrc
+ run: echo ::set-output name=NVMRC::$(cat .nvmrc)
+ id: nvm
+ - name: Setup node ${{ steps.nvm.outputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ steps.nvm.outputs.NVMRC }}
+ registry-url: https://registry.npmjs.org/
+ - name: Setup Node
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: '14.x'
+ registry-url: 'https://registry.npmjs.org'
+ - name: Install dependencies and build 🔧
+ run: npm install --force
+ - name: Publish package on NPM 📦
+ run: npm publish ${{ github.event.release.prerelease && '--tag next' || ''}}
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN_RNMAPBOX }}
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/update-docs.yml b/node_modules/@rnmapbox/maps/.github/workflows/update-docs.yml
new file mode 100644
index 0000000..fa5ef21
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/update-docs.yml
@@ -0,0 +1,67 @@
+name: Update docs to maps-docs repo
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ update_docs:
+ name: Update docs on maps-docs repo
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ working-directory: maps
+ steps:
+ - name: Install ImageMagick
+ run: sudo apt-get install -y imagemagick
+ working-directory: /
+ - name: test convert
+ run: convert -version
+ working-directory: /
+ - name: Checkout maps repo
+ uses: actions/checkout@v4
+ with:
+ path: maps
+ - name: Checkout maps-docs repo
+ uses: actions/checkout@v4
+ with:
+ repository: rnmapbox/maps-docs
+ ssh-key: ${{ secrets.MAPS_DOCS_DEPLOY_KEY }}
+ path: maps-docs
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 18
+ - uses: oven-sh/setup-bun@v1
+ with:
+ bun-version: latest
+ - name: Install dependencies
+ run: yarn install
+ - name: Generate component docs into maps-docs repo
+ run: node scripts/doc-generate.mjs
+ - name: Generate example docs into maps-docs repo
+ run: bun scripts/example-docs.ts
+ - name: Generate example app into maps-docs repo
+ run: |
+ cd example
+ echo $MAPBOX_WEB_ACCESS_TOKEN > accesstoken
+ yarn install
+ npx expo export -p web --output-dir ../../maps-docs/static/example-app
+ working-directory: maps
+ env:
+ MAPBOX_WEB_ACCESS_TOKEN: ${{ secrets.MAPBOX_WEB_ACCESS_TOKEN }}
+ - name: Setup deploy key for github deploy
+ uses: webfactory/ssh-agent@v0.5.0
+ with:
+ ssh-private-key: ${{ secrets.MAPS_DOCS_DEPLOY_KEY }}
+ - name: Add all changed files to git and push to origin main
+ run: |
+ git config --global user.name "github-actions[bot]"
+ git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git add .
+ git commit -m "Update docs from maps rnmapbox/maps@${GITHUB_SHA::7}"
+ git push origin main
+ working-directory: maps-docs
+ env:
+ GITHUB_SHA: ${{ github.sha }}
+
diff --git a/node_modules/@rnmapbox/maps/.github/workflows/web-actions.yml b/node_modules/@rnmapbox/maps/.github/workflows/web-actions.yml
new file mode 100644
index 0000000..15a3a0c
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.github/workflows/web-actions.yml
@@ -0,0 +1,59 @@
+name: Web Build
+
+on:
+ workflow_call:
+ inputs:
+ env_name:
+ required: true
+ default: default
+ type: string
+ ref:
+ required: false
+ type: string
+ NVMRC:
+ required: true
+ type: string
+ secrets:
+ MAPBOX_ACCESS_TOKEN:
+ required: true
+ MAPBOX_DOWNLOAD_TOKEN:
+ required: true
+ ENV_MAPBOX_ACCESS_TOKEN:
+ required: false
+ ENV_MAPBOX_DOWNLOAD_TOKEN:
+ required: false
+
+jobs:
+ build_example:
+ name: Example Build for Web
+ runs-on: ubuntu-latest
+ environment: ${{ inputs.env_name }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref == '' }}
+
+ - name: Checkout fork
+ uses: actions/checkout@v4
+ if: ${{ inputs.ref != '' }}
+ with:
+ ref: ${{ inputs.ref }}
+
+ - name: Setup node ${{ inputs.NVMRC }}
+ uses: actions/setup-node@v3.5.1
+ with:
+ node-version: ${{ inputs.NVMRC }}
+
+ - run: echo $MAPBOX_ACCESS_TOKEN > ./accesstoken
+ working-directory: example
+ env:
+ MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN || secrets.ENV_MAPBOX_ACCESS_TOKEN }}
+
+ - run: yarn install --network-timeout 1000000
+ working-directory: example
+
+ - run: yarn postinstall
+ working-directory: example
+
+ - run: npx expo export --platform web
+ working-directory: example
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/.gitignore b/node_modules/@rnmapbox/maps/.gitignore
new file mode 100644
index 0000000..115dce6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.gitignore
@@ -0,0 +1,132 @@
+# System
+.DS_Store
+
+# Xcode
+!**/*.xcodeproj
+!**/*.pbxproj
+!**/*.xcworkspacedata
+!**/*.xcsettings
+!**/*.xcscheme
+*.pbxuser
+!default.pbxuser
+*.mode1v3
+!default.mode1v3
+*.mode2v3
+!default.mode2v3
+*.perspectivev3
+!default.perspectivev3
+xcuserdata
+*.xccheckout
+*.moved-aside
+DerivedData
+*.hmap
+*.ipa
+*.xcuserstate
+project.xcworkspace
+
+# Gradle
+/build/
+/RNTester/android/app/build/
+/RNTester/android/app/gradle/
+/RNTester/android/app/gradlew
+/RNTester/android/app/gradlew.bat
+/ReactAndroid/build/
+
+# Buck
+.buckd
+buck-out
+/ReactAndroid/src/main/jni/prebuilt/lib/armeabi-v7a/
+/ReactAndroid/src/main/jni/prebuilt/lib/x86/
+/ReactAndroid/src/main/gen
+
+# Watchman
+.watchmanconfig
+
+# Android
+.idea
+.gradle
+local.properties
+*.iml
+
+# Node
+node_modules
+*.log
+.nvm
+/bots/node_modules/
+package-lock.json
+/example/package-lock.json
+/example/yarn.lock
+
+# Expo
+.expo
+example/dist
+
+# Test generated files
+/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js
+*.js.meta
+
+/coverage
+/third-party
+
+# Root dir shouldn't have Xcode project
+/*.xcodeproj
+
+# ReactCommon subdir shouldn't have Xcode project
+/ReactCommon/**/*.xcodeproj
+RNTester/build
+
+# Libs that shouldn't have Xcode project
+/Libraries/FBLazyVector/**/*.xcodeproj
+/Libraries/FBReactNativeSpec/**/*.xcodeproj
+/Libraries/RCTRequired/**/*.xcodeproj
+/React/CoreModules/**/*.xcodeproj
+/packages/react-native-codegen/**/*.xcodeproj
+
+# Ruby gems/bundle
+Gemfile
+Gemfile.lock
+vendor/
+.byebug_history
+
+# CocoaPods
+/template/ios/Pods/
+/template/ios/Podfile.lock
+
+# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here.
+RNTester/Pods/*
+!RNTester/Pods/__offline_mirrors
+
+# react-native-codegen
+/ReactCommon/fabric/components/rncore/
+/schema-rncore.json
+
+# Visual studio
+.vscode
+.vs
+
+# Project specific
+ios/Mapbox.framework
+ios/temp.zip
+ios/.framework_version
+ios/Pods/
+ios/RNMBX.xcodeproj/xcshareddata/
+android/build/
+android/rnmbx/build/
+android/.gradle/
+android/.idea/
+android/android.iml
+android/gradle/
+android/gradlew
+android/gradlew.bat
+android/local.properties
+reactnativemapboxgl.iml
+.idea
+coverage
+.project
+*.core.prefs
+*.iml
+
+rnmapbox-maps.tgz
+
+# generated by bob
+lib/
diff --git a/node_modules/@rnmapbox/maps/.husky/pre-commit b/node_modules/@rnmapbox/maps/.husky/pre-commit
new file mode 100755
index 0000000..38594a6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.husky/pre-commit
@@ -0,0 +1,5 @@
+#!/usr/bin/env sh
+#. "$(dirname -- "$0")/_/husky.sh"
+
+#npm run generate
+#npx lint-staged
diff --git a/node_modules/@rnmapbox/maps/.npmignore b/node_modules/@rnmapbox/maps/.npmignore
new file mode 100644
index 0000000..690f63a
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.npmignore
@@ -0,0 +1,48 @@
+# 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
+project.xcworkspace
+Podfile.lock
+Pods/
+
+# node.js
+#
+node_modules/
+npm-debug.log
+
+# project specific
+android/.gradle/
+android/.idea/
+android/android.iml
+android/gradle/
+android/gradlew
+android/gradlew.bat
+android/local.properties
+
+# rnmapbox/maps
+example
+__tests__
+coverage
+
+plugin/src
+plugin/jest.config.js
+plugin/tsconfig.json
diff --git a/node_modules/@rnmapbox/maps/.nvmrc b/node_modules/@rnmapbox/maps/.nvmrc
new file mode 100644
index 0000000..7ffccc4
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.nvmrc
@@ -0,0 +1,2 @@
+v18.18.0
+
diff --git a/node_modules/@rnmapbox/maps/.prettierrc.js b/node_modules/@rnmapbox/maps/.prettierrc.js
new file mode 100644
index 0000000..de2f53c
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.prettierrc.js
@@ -0,0 +1,4 @@
+module.exports = {
+ singleQuote: true,
+ trailingComma: 'all',
+};
diff --git a/node_modules/@rnmapbox/maps/.sonarcloud.properties b/node_modules/@rnmapbox/maps/.sonarcloud.properties
new file mode 100644
index 0000000..c357c72
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/.sonarcloud.properties
@@ -0,0 +1,15 @@
+# Path to sources
+sonar.sources=src,android/src,ios/RNMBX
+#sonar.exclusions=
+#sonar.inclusions=
+
+# Path to tests
+sonar.tests=__tests__
+#sonar.test.exclusions=
+#sonar.test.inclusions=
+
+# Source encoding
+#sonar.sourceEncoding=UTF-8
+
+# Exclusions for copy-paste detection
+#sonar.cpd.exclusions=
diff --git a/node_modules/@rnmapbox/maps/CONTRIBUTING.md b/node_modules/@rnmapbox/maps/CONTRIBUTING.md
new file mode 100644
index 0000000..d6a5325
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/CONTRIBUTING.md
@@ -0,0 +1,137 @@
+# Contributing
+
+## Setup for creating pull requests
+- Fork this project
+- In your fork, create a branch, for example: `fix/camera-update`
+- Add your changes
+- Run `yarn generate` to update the autogenerated code
+- Test changes in example app
+- Push and open a PR with your branch
+
+## Example app
+The recommended way to develop is building the example app. Example app links in `@rnmapbox/maps` from parent directory. JavaScript changes for example in `src/components/MapView.tsx`, will be applied automatically.
+Some notes about example app:
+- example app are both for demonstrating how to use differenc components, so examples should be simple (and not all of them should be typescript)
+- example app can contains screens designed from through testing of a component, but it should be separate for simple components demonstrating the use of components
+
+### Example app configurations:
+
+- V11: this build with V11 of mapbox
+ To build example in this mode on ios run:
+ ```
+ cd example/ios ; RNMBX11=1 pod update MapboxMaps
+ ```
+ To build example in this mode on android:
+ Change `RNMBX11=true` in `example/android/gradle.properties`
+- NewArchitecture/Fabric:
+ ```
+ cd example/ios ; RCT_NEW_ARCH_ENABLED=1 pod update MapboxMaps
+ ```
+ On android change `newArchEnabled=true` in `example/android/gradle.properties`
+
+### Running example app for Web
+
+```
+npx expo start -c --web
+```
+
+
+## Best practices for PRs
+- If you plan to work on a bigger feature, please open a discussion, to discuss the best way to address it
+- If you add a feature, make sure you add it to the documentation
+- Use meaningful commit messages, use semantic commit messages
+- If you add a new feature make sure to add a scene in `/example` for others to see/ test it
+
+## Generated code/documentation
+
+Run `yarn generate` to update generated code/documentation.
+
+We use the following code generators, but check yarn generate for more:
+- `style-spec/v8.json` download from mapbox.com describes properties of layers/sources etc. We generate the following files from it:
+ - `MapboxStyles.d.ts` - typescript definitions for different Layer styles
+ - `RNMBXStyle.swift.ejs`/`RNMBXStyleFactoryV10.kt` - ios/android native style setters
+ - `docs.json` is generated both from style-spec and documentation in our typescript files
+- Document generation:
+ - `docs/MapView.md` is generated from `src/components/MapView.tsx` with `react-docgen`
+ - `docs/examples.json` is generated from `example/src/examples/*`
+- Codepart generation:
+ Code between comments:
+ ```
+ // @{codepart-replace-start(LayerManagerCommonProps.codepart-kt.ejs,{layerType:"RNMBXCircleLayer"})}
+ ...
+ // @{codepart-replace-end}
+ ```
+ are generated. So instead of editing the code between the comments you need to edit the `codepart-*` file and run
+ `yarn generate` again
+- `android/src/main/old-arch/` is java code generated by react-native codegen from `src/specs`
+
+Also new architecture `codegen` by `react-native` generates a bunch of code from `src/specs`
+
+### Documentation generation
+
+Documentation is generated from code blocks and comments. It will be auto-generated when you commit changes.
+If any changes are generated from your edits, the changed files will need to be added using `git add` before attempting the commit again.
+To manually generate the changes, run `yarn generate`.
+
+Notice, that changing the documentation in the individual .md within `/docs` will not suffice.
+The correct way is the above described
+
+### Document site generation
+
+The full documentation generation process looks like this:
+
+`` is https://github.com/rnmapbox/maps-docs repo
+
+1.) `docs/docs.json` generated by `scripts/autogenerate.mjs`
+
+ The source is `style-spec/v8.json` and documentation at `src/*.ts`
+
+ This step runs by `yarn generate` and checked if up-todate by CI.
+
+2.) `docs/examples.json` generated by `jest __tests__/dumpExamplesJson.ts`.
+
+ ```
+ cd example
+ npx jest __tests__/dumpExamplesJson.ts
+ ```
+
+ This step runs by `yarn generate` and checked if up-todate by CI.
+
+3.) `/screenhsots`. Grab screenshots from examples (needs `docs/examples.json`)
+
+ We use detox tests to capture screenshots of examples
+ ```
+ cd example
+ yarn detox build --configuration ios.debug
+ yarn detox test --configuration ios.debug ./e2e/docScreenshots.e2e.js
+ ```
+
+ This step is run manually for now
+
+4.) `/docs/components` Generate component/api documentation (into the docosaurus site)
+
+ ```
+ node scripts/doc-generate.mjs
+ ```
+
+ Runs when `main` is changed by `update-docs` gh action workflow
+
+5.) `/docs/exmaples` Generate example docs (into the docosaurus site)
+
+ ```
+ bun scripts/example-docs.ts
+ ```
+
+ Runs when `main` is changed by `update-docs` gh action workflow
+
+6.) publish doc site
+
+ Runs automatically by workflow on the ``
+
+ ```
+ cd
+ GIT_USER=mfazekas yarn deploy
+ ```
+
+
+
diff --git a/node_modules/@rnmapbox/maps/README-v10.md b/node_modules/@rnmapbox/maps/README-v10.md
new file mode 100644
index 0000000..ef18df8
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/README-v10.md
@@ -0,0 +1,86 @@
+# Getting Started
+
+
+```shell
+react-native init sample --version 0.60.5
+cd sample
+yarn add https://github.com/rnmapbox/maps#main --save
+
+code android/build.gradle
+```
+
+```gradle
+# add the following:
+allprojects {
+ repositories {
+ maven {
+ url 'https://api.mapbox.com/downloads/v2/releases/maven'
+ authentication {
+ basic(BasicAuthentication)
+ }
+ credentials {
+ // Do not change the username below.
+ // This should always be `mapbox` (not your username).
+ username = 'mapbox'
+ // Use the secret token you stored in gradle.properties as the password
+ password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: ""
+ }
+ }
+ }
+}
+```
+
+code android/app/build.gradle
+```gradle
+# add the following:
+android {
+ packagingOptions {
+ pickFirst 'lib/x86/libc++_shared.so'
+ pickFirst 'lib/x86_64/libc++_shared.so'
+ pickFirst 'lib/arm64-v8a/libc++_shared.so'
+ pickFirst 'lib/armeabi-v7a/libc++_shared.so'
+ }
+}
+```
+
+code android/build.gradle
+```
+buildscript {
+ ext {
+ ...
+ RNMapboxMapsImpl = 'mapbox'
+ }
+}
+```
+
+code ios/Podfile
+```pod
+ # change these
+ $RNMapboxMapsImpl = 'mapbox'
+
+ platform :ios, min_ios_version_supported
+
+ ...
+
+ ...
+
+ pre_install do |installer|
+ $RNMapboxMaps.pre_install(installer)
+ end
+
+ post_install do |installer|
+ react_native_post_install(installer)
+ $RNMapboxMaps.post_install(installer)
+ end
+```
+
+```pod
+# on RN 0.60 only:
+# add modular_headers to `React-Core`
+pod 'React-Core', :path => '../node_modules/react-native/React', modular_headers: true
+```
+
+iOS:
+
+ * Add `$(SDKROOT)/usr/lib/swift` to Library search paths.
+
diff --git a/node_modules/@rnmapbox/maps/RELEASE.md b/node_modules/@rnmapbox/maps/RELEASE.md
new file mode 100644
index 0000000..afbcd77
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/RELEASE.md
@@ -0,0 +1,25 @@
+# How to create a release for this repo
+
+## Make sure `main` builds correctly
+
+Are all our [actions](https://github.com/rnmapbox/maps/actions) passing successfully?
+If not, make sure to investigate the issue and fix it prior to a release.
+
+## Bump the version in our package.json
+
+Once you verified, that `main` isn't broken, go on and increase the `version` within our `package.json`. This should be done by `Bump version` workflow
+
+## Draft a new release on GitHub
+
+Within the [releases](https://github.com/rnmapbox/maps/releases) section of the repo you can [`Draft a new release`](https://github.com/rnmapbox/maps/releases/new).
+
+
+Select a tag, and press `Generate release notes`
+
+Edit generated `release notes` if needed
+
+`Tag version` & `Release title` should be the same.
+
+## Monitor the repos issues for updates
+
+Once the release is out the door (on [npm](https://www.npmjs.com/package/@rnmapbox/maps)), make sure to monitor the [issues](https://github.com/rnmapbox/maps/issues) closely for problems the community might encounter
diff --git a/node_modules/@rnmapbox/maps/__tests__/__mocks__/react-native.mock.js b/node_modules/@rnmapbox/maps/__tests__/__mocks__/react-native.mock.js
new file mode 100644
index 0000000..fb89812
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/__mocks__/react-native.mock.js
@@ -0,0 +1,37 @@
+jest.mock('react-native/Libraries/Image/resolveAssetSource', () => {
+ return () => ({ uri: 'asset://test.png' });
+});
+
+jest.mock('../../src/assets/heading.png', () => 'heading.png');
+
+jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter', () => {
+ function MockEventEmitter() {}
+ MockEventEmitter.prototype.addListener = jest.fn(() => ({
+ remove: jest.fn(),
+ }));
+ return {
+ __esModule: true,
+ default: MockEventEmitter,
+ };
+});
+
+jest.mock('react-native/Libraries/Utilities/Platform', () => ({
+ OS: 'ios', // or 'android'
+ select: (x) => {
+ if (x.android) {
+ return x.android;
+ } else if (x.native) {
+ return x.native;
+ } else if (x.default) {
+ return x.default;
+ }
+ },
+}));
+
+jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper', () => ({
+ addListener: jest.fn(),
+ API: {
+ flushQueue: jest.fn(),
+ },
+ shouldUseNativeDriver: jest.fn(),
+}));
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/BackgroundLayer.test.js b/node_modules/@rnmapbox/maps/__tests__/components/BackgroundLayer.test.js
new file mode 100644
index 0000000..8583c79
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/BackgroundLayer.test.js
@@ -0,0 +1,55 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import BackgroundLayer from '../../src/components/BackgroundLayer';
+
+describe('BackgroundLayer', () => {
+ test('renders correctly with default props', () => {
+ const { UNSAFE_root: backgroundLayer } = render(
+ ,
+ );
+
+ const { props } = backgroundLayer;
+
+ expect(props.sourceID).toStrictEqual('DefaultSourceID');
+ });
+
+ test('renders correctly with custom props', () => {
+ const testProps = {
+ id: 'customId',
+ sourceID: 'customSourceId',
+ sourceLayerID: 'customSourceLayerId',
+ aboveLayerID: 'customAboveLayerId',
+ belowLayerID: 'customBelowLayerId',
+ layerIndex: 0,
+ filter: ['==', 'arbitraryFilter', true],
+ minZoomLevel: 3,
+ maxZoomLevel: 8,
+ style: { visibility: 'none' },
+ };
+
+ const { UNSAFE_root: backgroundLayer } = render(
+ ,
+ );
+ const { props } = backgroundLayer;
+
+ expect(props.id).toStrictEqual(testProps.id);
+ expect(props.sourceID).toStrictEqual(testProps.sourceID);
+ expect(props.sourceLayerID).toStrictEqual(testProps.sourceLayerID);
+ expect(props.aboveLayerID).toStrictEqual(testProps.aboveLayerID);
+ expect(props.belowLayerID).toStrictEqual(testProps.belowLayerID);
+ expect(props.layerIndex).toStrictEqual(testProps.layerIndex);
+ expect(props.filter).toStrictEqual(testProps.filter);
+ expect(props.minZoomLevel).toStrictEqual(testProps.minZoomLevel);
+ expect(props.maxZoomLevel).toStrictEqual(testProps.maxZoomLevel);
+ expect(props.style).toStrictEqual(testProps.style);
+
+ // abstract layer props
+ expect(backgroundLayer.children[0].props.reactStyle).toStrictEqual({
+ visibility: {
+ styletype: 'constant',
+ stylevalue: { type: 'string', value: testProps.style.visibility },
+ },
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/Callout.test.js b/node_modules/@rnmapbox/maps/__tests__/components/Callout.test.js
new file mode 100644
index 0000000..be276c6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/Callout.test.js
@@ -0,0 +1,91 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+import { Text, View } from 'react-native';
+
+import Callout from '../../src/components/Callout';
+
+describe('Callout', () => {
+ test('renders with custom title', () => {
+ const testTitle = 'test title';
+ const { getByText } = render();
+
+ expect(getByText(testTitle)).toBeDefined();
+ });
+
+ describe('_renderDefaultCallout', () => {
+ test('renders default children', () => {
+ const { UNSAFE_getByType, UNSAFE_getAllByType } = render();
+ const callout = UNSAFE_getByType('RNMBXCallout');
+
+ expect(callout).toBeDefined();
+ expect(UNSAFE_getAllByType(Text).length).toBe(1);
+ expect(UNSAFE_getAllByType(View).length).toBe(3);
+ });
+
+ test('renders with custom styles', () => {
+ const testProps = {
+ style: { height: 1 },
+ containerStyle: { height: 2 },
+ contentStyle: { height: 3 },
+ tipStyle: { height: 4 },
+ textStyle: { height: 5 },
+ };
+ const { UNSAFE_getByType, UNSAFE_getAllByType } = render(
+ ,
+ );
+
+ const callout = UNSAFE_getByType('RNMBXCallout');
+ const views = UNSAFE_getAllByType(View);
+ const text = UNSAFE_getByType(Text);
+
+ const calloutWrapperTestStyle = callout.props.style[1].height;
+ const animatedViewTestStyle = views[0].props.style.height;
+ const wrapperViewTestStyle = views[1].props.style[1].height;
+ const tipViewTestStyle = views[2].props.style[1].height;
+ const textTestStyle = text.props.style[1].height;
+
+ expect(calloutWrapperTestStyle).toStrictEqual(
+ testProps.containerStyle.height,
+ );
+ expect(animatedViewTestStyle).toStrictEqual(testProps.style.height);
+ expect(wrapperViewTestStyle).toStrictEqual(testProps.contentStyle.height);
+ expect(tipViewTestStyle).toStrictEqual(testProps.tipStyle.height);
+ expect(textTestStyle).toStrictEqual(testProps.textStyle.height);
+ });
+ });
+
+ describe('_renderCustomCallout', () => {
+ test('renders custom children', () => {
+ const { getByTestId, UNSAFE_queryByType } = render(
+
+ {'Foo Bar'}
+ ,
+ );
+
+ expect(UNSAFE_queryByType(Text)).toBeNull();
+ expect(getByTestId('TestChild')).toBeDefined();
+ });
+
+ test('renders with custom styles', () => {
+ const testProps = {
+ style: { width: 1 },
+ containerStyle: { width: 2 },
+ };
+ const { UNSAFE_getByType, UNSAFE_getAllByType } = render(
+
+ {'Foo Bar'}
+ ,
+ );
+ const callout = UNSAFE_getByType('RNMBXCallout');
+ const views = UNSAFE_getAllByType(View);
+
+ const calloutWrapperTestStyle = callout.props.style[1].width;
+ const animatedViewTestStyle = views[0].props.style.width;
+
+ expect(calloutWrapperTestStyle).toStrictEqual(
+ testProps.containerStyle.width,
+ );
+ expect(animatedViewTestStyle).toStrictEqual(testProps.style.width);
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/Camera.test.js b/node_modules/@rnmapbox/maps/__tests__/components/Camera.test.js
new file mode 100644
index 0000000..5a9460a
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/Camera.test.js
@@ -0,0 +1,67 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import { Camera } from '../../src/components/Camera';
+
+const coordinate1 = [-111.8678, 40.2866];
+
+const bounds1 = {
+ ne: [-74.12641, 40.797968],
+ sw: [-74.143727, 40.772177],
+};
+
+const paddingZero = {
+ paddingTop: 0,
+ paddingRight: 0,
+ paddingBottom: 0,
+ paddingLeft: 0,
+};
+
+const toFeature = (position) => {
+ return {
+ type: 'Feature',
+ geometry: {
+ type: 'Point',
+ coordinates: position,
+ },
+ properties: {},
+ };
+};
+
+const toFeatureCollection = (bounds) => {
+ return {
+ type: 'FeatureCollection',
+ features: [toFeature(bounds.ne), toFeature(bounds.sw)],
+ };
+};
+describe('Camera', () => {
+ test('defaults are set', () => {
+ const result = render();
+ const { props } = result.queryByTestId('Camera');
+ expect(props.stop).toStrictEqual({});
+ });
+ test('set location by center', () => {
+ const result = render(
+ ,
+ );
+ const { props } = result.queryByTestId('Camera');
+ props.stop.centerCoordinate = JSON.parse(props.stop.centerCoordinate);
+ expect(props.stop).toStrictEqual({
+ centerCoordinate: toFeature(coordinate1),
+ zoom: 14,
+ });
+ });
+ test('set location by bounds', () => {
+ const result = render();
+ const { props } = result.queryByTestId('Camera');
+ props.stop.bounds = JSON.parse(props.stop.bounds);
+ expect(props.stop).toStrictEqual({
+ bounds: toFeatureCollection(bounds1),
+ });
+ });
+ test('animation mode', () => {
+ const result = render();
+ const { props } = result.queryByTestId('Camera');
+ expect(props.stop.mode).toEqual('Move');
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/CircleLayer.test.js b/node_modules/@rnmapbox/maps/__tests__/components/CircleLayer.test.js
new file mode 100644
index 0000000..59c83c8
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/CircleLayer.test.js
@@ -0,0 +1,54 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import CircleLayer from '../../src/components/CircleLayer';
+
+describe('CircleLayer', () => {
+ test('renders correctly with default props', () => {
+ const { UNSAFE_root: circleLayer } = render(
+ ,
+ );
+ const { props } = circleLayer;
+
+ expect(props.sourceID).toStrictEqual('DefaultSourceID');
+ });
+
+ test('renders correctly with custom props', () => {
+ const customProps = {
+ id: 'customId',
+ sourceID: 'customSourceId',
+ sourceLayerID: 'customSourceLayerId',
+ aboveLayerID: 'customAboveLayerId',
+ belowLayerID: 'customBelowLayerId',
+ layerIndex: 0,
+ filter: ['==', 'arbitraryFilter', true],
+ minZoomLevel: 3,
+ maxZoomLevel: 8,
+ style: { visibility: 'none' },
+ };
+
+ const { UNSAFE_root: circleLayer } = render(
+ ,
+ );
+ const { props } = circleLayer;
+
+ expect(props.id).toStrictEqual(customProps.id);
+ expect(props.sourceID).toStrictEqual(customProps.sourceID);
+ expect(props.sourceLayerID).toStrictEqual(customProps.sourceLayerID);
+ expect(props.aboveLayerID).toStrictEqual(customProps.aboveLayerID);
+ expect(props.belowLayerID).toStrictEqual(customProps.belowLayerID);
+ expect(props.layerIndex).toStrictEqual(customProps.layerIndex);
+ expect(props.filter).toStrictEqual(customProps.filter);
+ expect(props.minZoomLevel).toStrictEqual(customProps.minZoomLevel);
+ expect(props.maxZoomLevel).toStrictEqual(customProps.maxZoomLevel);
+ expect(props.style).toStrictEqual(customProps.style);
+
+ // abstract layer props
+ expect(circleLayer.children[0].props.reactStyle).toStrictEqual({
+ visibility: {
+ styletype: 'constant',
+ stylevalue: { type: 'string', value: customProps.style.visibility },
+ },
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/HeatmapLayer.test.js b/node_modules/@rnmapbox/maps/__tests__/components/HeatmapLayer.test.js
new file mode 100644
index 0000000..c0362cc
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/HeatmapLayer.test.js
@@ -0,0 +1,52 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import HeatmapLayer from '../../src/components/HeatmapLayer';
+
+describe('HeatmapLayer', () => {
+ test('renders correctly with default props', () => {
+ const { UNSAFE_root: heatmapLayer } = render(
+ ,
+ );
+ const { props } = heatmapLayer;
+ expect(props.sourceID).toStrictEqual('DefaultSourceID');
+ });
+
+ test('renders correctly with custom props', () => {
+ const testProps = {
+ id: 'customId',
+ sourceID: 'customSourceId',
+ sourceLayerID: 'customSourceLayerId',
+ aboveLayerID: 'customAboveLayerId',
+ belowLayerID: 'customBelowLayerId',
+ layerIndex: 0,
+ filter: ['==', 'arbitraryFilter', true],
+ minZoomLevel: 3,
+ maxZoomLevel: 8,
+ style: { visibility: 'none' },
+ };
+ const { UNSAFE_root: heatmapLayer } = render(
+ ,
+ );
+ const { props } = heatmapLayer;
+
+ expect(props.id).toStrictEqual(testProps.id);
+ expect(props.sourceID).toStrictEqual(testProps.sourceID);
+ expect(props.sourceLayerID).toStrictEqual(testProps.sourceLayerID);
+ expect(props.aboveLayerID).toStrictEqual(testProps.aboveLayerID);
+ expect(props.belowLayerID).toStrictEqual(testProps.belowLayerID);
+ expect(props.layerIndex).toStrictEqual(testProps.layerIndex);
+ expect(props.filter).toStrictEqual(testProps.filter);
+ expect(props.minZoomLevel).toStrictEqual(testProps.minZoomLevel);
+ expect(props.maxZoomLevel).toStrictEqual(testProps.maxZoomLevel);
+ expect(props.style).toStrictEqual(testProps.style);
+
+ // abstract layer props
+ expect(heatmapLayer.children[0].props.reactStyle).toStrictEqual({
+ visibility: {
+ styletype: 'constant',
+ stylevalue: { type: 'string', value: testProps.style.visibility },
+ },
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/Light.test.js b/node_modules/@rnmapbox/maps/__tests__/components/Light.test.js
new file mode 100644
index 0000000..a0ec50f
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/Light.test.js
@@ -0,0 +1,37 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import Light from '../../src/components/Light';
+
+describe('Light', () => {
+ test('renders correctly', () => {
+ const { queryByTestId } = render();
+ const light = queryByTestId('RNMBXLight');
+ expect(light).toBeDefined();
+ });
+
+ test('renders correctly with custom styles', () => {
+ const testStyles = {
+ position: [1234, 1234, 1234],
+ color: '#FA0000', // === ProcessedTestColor
+ anchor: 'map',
+ intensity: 1,
+ };
+ const processedTestColor = 4294574080;
+
+ const { queryByTestId } = render();
+
+ const customStyles = queryByTestId('RNMBXLight').props.reactStyle;
+ const { anchor } = customStyles;
+ const { color } = customStyles;
+ const { position } = customStyles;
+ const { intensity } = customStyles;
+
+ expect(anchor.stylevalue.value).toStrictEqual(testStyles.anchor);
+ expect(color.stylevalue.value).toStrictEqual(processedTestColor);
+ expect(intensity.stylevalue.value).toStrictEqual(testStyles.intensity);
+ expect(position.stylevalue.value[0].value).toStrictEqual(
+ testStyles.position[0],
+ );
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/MapView.test.js b/node_modules/@rnmapbox/maps/__tests__/components/MapView.test.js
new file mode 100644
index 0000000..e580fe2
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/MapView.test.js
@@ -0,0 +1,16 @@
+import * as React from 'react';
+import { render } from '@testing-library/react-native';
+
+import MapView from '../../src/components/MapView';
+
+describe('MapView', () => {
+ test('renders with testID', () => {
+ const expectedTestId = 'im used for identification in tests';
+
+ const { getByTestId } = render();
+
+ expect(() => {
+ getByTestId(expectedTestId);
+ }).not.toThrow();
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/Style.test.js b/node_modules/@rnmapbox/maps/__tests__/components/Style.test.js
new file mode 100644
index 0000000..7df5eea
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/Style.test.js
@@ -0,0 +1,261 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import VectorSource from '../../src/components/VectorSource';
+import RasterSource from '../../src/components/RasterSource';
+import ImageSource from '../../src/components/ImageSource';
+import { ShapeSource } from '../../src/components/ShapeSource';
+import Style from '../../src/components/Style';
+import HeatmapLayer from '../../src/components/HeatmapLayer';
+import CircleLayer from '../../src/components/CircleLayer';
+import { SymbolLayer } from '../../src/components/SymbolLayer';
+import RasterLayer from '../../src/components/RasterLayer';
+import LineLayer from '../../src/components/LineLayer';
+import FillLayer from '../../src/components/FillLayer';
+import FillExtrusionLayer from '../../src/components/FillExtrusionLayer';
+import BackgroundLayer from '../../src/components/BackgroundLayer';
+
+describe('Style', () => {
+ test('renders vectory source correctly', () => {
+ const vectorSource = {
+ type: 'vector',
+ url: 'mapbox://mapbox.660ui7x6',
+ tiles: ['http://host1', 'http://host2'],
+ minzoom: 1,
+ maxzoom: 22,
+ attribution: 'Copyright',
+ scheme: 'tms',
+ };
+
+ const json = {
+ layers: [],
+ sources: {
+ vectorSource,
+ },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const component = UNSAFE_getByType(VectorSource);
+ const { props } = component;
+
+ expect(props.id).toStrictEqual(Object.keys(json.sources)[0]);
+ expect(props.url).toStrictEqual(vectorSource.url);
+ expect(props.tileUrlTemplates).toStrictEqual(vectorSource.tiles);
+ expect(props.minZoomLevel).toStrictEqual(vectorSource.minzoom);
+ expect(props.maxZoomLevel).toStrictEqual(vectorSource.maxzoom);
+ expect(props.attribution).toStrictEqual(vectorSource.attribution);
+ expect(props.tms).toBe(true);
+ });
+
+ test('renders raster source correctly', () => {
+ const rasterSource = {
+ type: 'raster',
+ url: 'mapbox://mapbox.660ui7x6',
+ tiles: ['http://host1', 'http://host2'],
+ minzoom: 1,
+ maxzoom: 22,
+ attribution: 'Copyright',
+ scheme: 'tms',
+ tileSize: 256,
+ };
+
+ const json = {
+ layers: [],
+ sources: {
+ rasterSource,
+ },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const component = UNSAFE_getByType(RasterSource);
+ const { props } = component;
+
+ expect(props.id).toStrictEqual(Object.keys(json.sources)[0]);
+ expect(props.url).toStrictEqual(rasterSource.url);
+ expect(props.tileUrlTemplates).toStrictEqual(rasterSource.tiles);
+ expect(props.minZoomLevel).toStrictEqual(rasterSource.minzoom);
+ expect(props.maxZoomLevel).toStrictEqual(rasterSource.maxzoom);
+ expect(props.attribution).toStrictEqual(rasterSource.attribution);
+ expect(props.tms).toBe(true);
+ expect(props.tileSize).toStrictEqual(rasterSource.tileSize);
+ });
+
+ test('renders image source correctly', () => {
+ const imageSource = {
+ type: 'image',
+ url: 'https://docs.mapbox.com/mapbox-gl-js/assets/radar.gif',
+ coordinates: [
+ [-80.425, 46.437],
+ [-71.516, 46.437],
+ [-71.516, 37.936],
+ [-80.425, 37.936],
+ ],
+ };
+
+ const json = {
+ layers: [],
+ sources: {
+ imageSource,
+ },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const component = UNSAFE_getByType(ImageSource);
+ const { props } = component;
+
+ expect(props.id).toStrictEqual(Object.keys(json.sources)[0]);
+ expect(props.url).toStrictEqual(imageSource.url);
+ expect(props.coordinates).toStrictEqual(imageSource.coordinates);
+ });
+
+ test('renders shape source correctly', () => {
+ const shapeSource = {
+ type: 'geojson',
+ data: 'https://docs.mapbox.com/mapbox-gl-js/assets/earthquakes.geojson',
+ cluster: true,
+ clusterRadius: 80,
+ clusterMaxZoom: 10,
+ maxzoom: 22,
+ minzoom: 1,
+ buffer: 128,
+ tolerance: 0.5,
+ };
+
+ const json = {
+ layers: [],
+ sources: {
+ imageSource: shapeSource,
+ },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const component = UNSAFE_getByType(ShapeSource);
+ const { props } = component;
+
+ expect(props.id).toStrictEqual(Object.keys(json.sources)[0]);
+ expect(props.url).toStrictEqual(shapeSource.data);
+ expect(props.shape).toBeUndefined();
+ expect(props.clusterRadius).toStrictEqual(shapeSource.clusterRadius);
+ expect(props.clusterMaxZoomLevel).toStrictEqual(shapeSource.clusterMaxZoom);
+ expect(props.maxZoomLevel).toStrictEqual(shapeSource.maxzoom);
+ expect(props.buffer).toStrictEqual(shapeSource.buffer);
+ expect(props.tolerance).toStrictEqual(shapeSource.tolerance);
+ });
+
+ test('renders shape source with json data correctly', () => {
+ const shapeSource = {
+ type: 'geojson',
+ data: {
+ type: 'FeatureCollection',
+ features: [],
+ },
+ };
+
+ const json = {
+ layers: [],
+ sources: {
+ imageSource: shapeSource,
+ },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const component = UNSAFE_getByType(ShapeSource);
+ const { props } = component;
+
+ expect(props.id).toStrictEqual(Object.keys(json.sources)[0]);
+ expect(props.shape).toStrictEqual(shapeSource.data);
+ expect(props.url).toBeUndefined();
+ });
+
+ test('renders supported layer types correctly', () => {
+ const json = {
+ layers: [
+ {
+ id: 'circle',
+ type: 'circle',
+ },
+ {
+ id: 'symbol',
+ type: 'symbol',
+ },
+ {
+ id: 'raster',
+ type: 'raster',
+ },
+ {
+ id: 'line',
+ type: 'line',
+ },
+ {
+ id: 'fill',
+ type: 'fill',
+ },
+ {
+ id: 'fill-extrusion',
+ type: 'fill-extrusion',
+ },
+ {
+ id: 'background',
+ type: 'background',
+ },
+ {
+ id: 'heatmap',
+ type: 'heatmap',
+ },
+ ],
+ };
+
+ const { UNSAFE_getByType } = render();
+ const circleLayer = UNSAFE_getByType(CircleLayer);
+ const symbolLayer = UNSAFE_getByType(SymbolLayer);
+ const rasterLayer = UNSAFE_getByType(RasterLayer);
+ const lineLayer = UNSAFE_getByType(LineLayer);
+ const fillLayer = UNSAFE_getByType(FillLayer);
+ const fillExtrusionLayer = UNSAFE_getByType(FillExtrusionLayer);
+ const backgroundLayer = UNSAFE_getByType(BackgroundLayer);
+ const heatmapLayer = UNSAFE_getByType(HeatmapLayer);
+
+ expect(circleLayer.props.id).toStrictEqual('circle');
+ expect(symbolLayer.props.id).toStrictEqual('symbol');
+ expect(rasterLayer.props.id).toStrictEqual('raster');
+ expect(lineLayer.props.id).toStrictEqual('line');
+ expect(fillLayer.props.id).toStrictEqual('fill');
+ expect(fillExtrusionLayer.props.id).toStrictEqual('fill-extrusion');
+ expect(backgroundLayer.props.id).toStrictEqual('background');
+ expect(heatmapLayer.props.id).toStrictEqual('heatmap');
+ });
+
+ test('renders layer props correctly', () => {
+ const circleLayer = {
+ id: 'circle',
+ type: 'circle',
+ source: 'population',
+ 'source-layer': 'state_county_population',
+ filter: ['==', 'isState', true],
+ minzoom: 1,
+ maxzoom: 22,
+ paint: {
+ 'circle-opacity': 0.75,
+ },
+ layout: {
+ visibility: 'visible',
+ },
+ };
+ const json = {
+ layers: [circleLayer],
+ };
+
+ const { UNSAFE_getByType } = render();
+ const layerComponent = UNSAFE_getByType(CircleLayer);
+ const { props } = layerComponent;
+ expect(props.sourceID).toStrictEqual(circleLayer.source);
+ expect(props.sourceLayerID).toStrictEqual(circleLayer['source-layer']);
+ expect(props.filter).toStrictEqual(circleLayer.filter);
+ expect(props.minZoomLevel).toStrictEqual(circleLayer.minzoom);
+ expect(props.maxZoomLevel).toStrictEqual(circleLayer.maxzoom);
+ expect(props.style.circleOpacity).toStrictEqual(
+ circleLayer.paint['circle-opacity'],
+ );
+ expect(props.style.visibility).toStrictEqual(circleLayer.layout.visibility);
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/SymbolLayer.test.js b/node_modules/@rnmapbox/maps/__tests__/components/SymbolLayer.test.js
new file mode 100644
index 0000000..c4ef1eb
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/SymbolLayer.test.js
@@ -0,0 +1,54 @@
+import React from 'react';
+import { render } from '@testing-library/react-native';
+
+import {
+ SymbolLayer,
+ NATIVE_MODULE_NAME,
+} from '../../src/components/SymbolLayer';
+
+describe('SymbolLayer', () => {
+ test('renders correctly with default props', () => {
+ const { UNSAFE_getByType } = render(
+ ,
+ );
+ const symbolLayer = UNSAFE_getByType(NATIVE_MODULE_NAME);
+ const { props } = symbolLayer;
+
+ expect(props.sourceID).toStrictEqual('DefaultSourceID');
+ });
+
+ test('renders correctly with custom props', () => {
+ const customProps = {
+ id: 'customId',
+ sourceID: 'customSourceId',
+ sourceLayerID: 'customSourceLayerId',
+ aboveLayerID: 'customAboveLayerId',
+ belowLayerID: 'customBelowLayerId',
+ layerIndex: 0,
+ filter: ['==', 'arbitraryFilter', true],
+ minZoomLevel: 3,
+ maxZoomLevel: 8,
+ style: { visibility: 'none' },
+ };
+
+ const { UNSAFE_getByType } = render();
+ const symbolLayer = UNSAFE_getByType(NATIVE_MODULE_NAME);
+ const { props } = symbolLayer;
+
+ expect(props.id).toStrictEqual(customProps.id);
+ expect(props.sourceID).toStrictEqual(customProps.sourceID);
+ expect(props.sourceLayerID).toStrictEqual(customProps.sourceLayerID);
+ expect(props.aboveLayerID).toStrictEqual(customProps.aboveLayerID);
+ expect(props.belowLayerID).toStrictEqual(customProps.belowLayerID);
+ expect(props.layerIndex).toStrictEqual(customProps.layerIndex);
+ expect(props.filter).toStrictEqual(customProps.filter);
+ expect(props.minZoomLevel).toStrictEqual(customProps.minZoomLevel);
+ expect(props.maxZoomLevel).toStrictEqual(customProps.maxZoomLevel);
+ expect(props.reactStyle).toStrictEqual({
+ visibility: {
+ styletype: 'constant',
+ stylevalue: { type: 'string', value: customProps.style.visibility },
+ },
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/components/UserLocation.test.js b/node_modules/@rnmapbox/maps/__tests__/components/UserLocation.test.js
new file mode 100644
index 0000000..cb692d0
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/components/UserLocation.test.js
@@ -0,0 +1,256 @@
+import React from 'react';
+import { render, fireEvent } from '@testing-library/react-native';
+
+import UserLocation from '../../src/components/UserLocation';
+import { ShapeSource } from '../../src/components/ShapeSource';
+import CircleLayer from '../../src/components/CircleLayer';
+import locationManager from '../../src/modules/location/locationManager';
+
+const position = {
+ coords: {
+ accuracy: 9.977999687194824,
+ altitude: 44.64373779296875,
+ heading: 251.5358428955078,
+ latitude: 51.5462244,
+ longitude: 4.1036916,
+ speed: 0.08543474227190018,
+ course: 251.5358428955078,
+ },
+ timestamp: 1573730357879,
+};
+
+describe('UserLocation', () => {
+ describe('render', () => {
+ jest.spyOn(locationManager, 'start').mockImplementation(jest.fn());
+ jest
+ .spyOn(locationManager, 'getLastKnownLocation')
+ .mockImplementation(() => position);
+
+ jest.spyOn(locationManager, 'addListener');
+
+ jest.spyOn(locationManager, 'removeListener');
+ jest
+ .spyOn(locationManager, 'setMinDisplacement')
+ .mockImplementation(jest.fn());
+
+ beforeEach(() => {
+ jest.clearAllMocks();
+ });
+
+ test('renders with CircleLayers by default', async () => {
+ const { UNSAFE_getAllByType } = await render();
+
+ const shapeSource = UNSAFE_getAllByType(ShapeSource);
+ const circleLayer = UNSAFE_getAllByType(CircleLayer);
+
+ expect(shapeSource.length).toBe(1);
+ expect(circleLayer.length).toBe(3);
+ });
+
+ test('does not render with visible set to false', async () => {
+ const { UNSAFE_queryByType } = await render(
+ ,
+ );
+
+ const shapeSource = UNSAFE_queryByType(ShapeSource);
+ const circleLayer = UNSAFE_queryByType(CircleLayer);
+
+ expect(shapeSource).toEqual(null);
+ expect(circleLayer).toEqual(null);
+ });
+
+ test('renders with CustomChild when provided', async () => {
+ const circleLayerProps = {
+ key: 'testUserLocationCircle',
+ id: 'testUserLocationCircle',
+ style: {
+ circleRadius: 5,
+ circleColor: '#ccc',
+ circleOpacity: 1,
+ circlePitchAlignment: 'map',
+ },
+ };
+
+ const { UNSAFE_queryByType, UNSAFE_queryAllByType } = await render(
+
+
+ ,
+ );
+
+ const shapeSource = UNSAFE_queryByType(ShapeSource);
+ const circleLayer = UNSAFE_queryAllByType(CircleLayer);
+
+ expect(shapeSource).toBeDefined();
+ expect(circleLayer[0]).toBeDefined();
+ expect(circleLayer.length).toBe(1);
+
+ expect(circleLayer[0].props.style).toEqual(circleLayerProps.style);
+ });
+
+ test('calls onUpdate callback when new location is received', () => {
+ const onUpdateCallback = jest.fn();
+
+ render();
+
+ locationManager._onUpdate({
+ coords: {
+ accuracy: 9.977999687194824,
+ altitude: 44.64373779296875,
+ heading: 251.5358428955078,
+ latitude: 51.5462244,
+ longitude: 4.1036916,
+ speed: 0.08543474227190018,
+ course: 251.5358428955078,
+ },
+ timestamp: 1573730357879,
+ });
+
+ expect(onUpdateCallback).toHaveBeenCalled();
+ });
+
+ test('calls onPress callback when location icon is pressed', () => {
+ const onPressCallback = jest.fn();
+
+ const { UNSAFE_queryByType } = render(
+ ,
+ );
+
+ const shapeSource = UNSAFE_queryByType(ShapeSource);
+ fireEvent(shapeSource, 'onPress');
+ fireEvent(shapeSource, 'onPress');
+ expect(onPressCallback).toHaveBeenCalledTimes(2);
+ });
+
+ test('correctly unmounts', async () => {
+ const { unmount } = render();
+
+ expect(locationManager.addListener).toHaveBeenCalled();
+ expect(locationManager.removeListener).not.toHaveBeenCalled();
+
+ unmount();
+
+ expect(locationManager.removeListener).toHaveBeenCalledTimes(1);
+ });
+ });
+
+ describe('methods', () => {
+ let ul;
+
+ beforeEach(() => {
+ ul = new UserLocation();
+
+ jest.spyOn(locationManager, 'start').mockImplementation(jest.fn());
+ jest.spyOn(locationManager, 'stop').mockImplementation(jest.fn());
+ jest
+ .spyOn(locationManager, 'getLastKnownLocation')
+ .mockImplementation(() => position);
+
+ ul.setState = jest.fn();
+
+ ul.props = UserLocation.defaultProps;
+
+ ul._isMounted = true;
+ });
+
+ afterEach(() => {
+ jest.clearAllMocks();
+ });
+
+ test('initial state is as expected', () => {
+ const initialState = {
+ coordinates: null,
+ shouldShowUserLocation: false,
+ heading: null,
+ };
+
+ expect(ul.state).toStrictEqual(initialState);
+ expect(ul.locationManagerRunning).toStrictEqual(false);
+ });
+
+ // TODO: replace object { running: boolean } argument with simple boolean
+ describe('#setLocationManager', () => {
+ test('called with "running" true', async () => {
+ const lastKnownLocation = [4.1036916, 51.5462244];
+ const heading = 251.5358428955078;
+
+ expect(ul.locationManagerRunning).toStrictEqual(false);
+
+ await ul.setLocationManager({ running: true });
+
+ expect(ul.locationManagerRunning).toStrictEqual(true);
+ expect(locationManager.start).toHaveBeenCalledTimes(1);
+ expect(locationManager.getLastKnownLocation).toHaveBeenCalledTimes(1);
+ expect(ul.setState).toHaveBeenCalledTimes(2);
+ expect(ul.setState).toHaveBeenCalledWith({
+ coordinates: lastKnownLocation,
+ heading,
+ });
+ expect(locationManager.stop).not.toHaveBeenCalled();
+ });
+
+ test('called with "running" false', async () => {
+ // start
+ expect(ul.locationManagerRunning).toStrictEqual(false);
+ await ul.setLocationManager({ running: true });
+ expect(ul.locationManagerRunning).toStrictEqual(true);
+
+ // stop
+ await ul.setLocationManager({ running: false });
+
+ expect(ul.locationManagerRunning).toStrictEqual(false);
+ // only once from start
+ expect(locationManager.start).toHaveBeenCalledTimes(1);
+ // stop should not be called
+ expect(locationManager.stop).not.toHaveBeenCalled();
+ });
+ });
+
+ describe('#needsLocationManagerRunning', () => {
+ test('returns true correctly', () => {
+ // default props "onUpdate: undefined, visible: true"
+ expect(ul.needsLocationManagerRunning()).toStrictEqual(true);
+
+ ul.props = {
+ onUpdate: () => {},
+ visible: true,
+ };
+
+ expect(ul.needsLocationManagerRunning()).toStrictEqual(true);
+
+ ul.props = {
+ onUpdate: () => {},
+ visible: false,
+ };
+
+ expect(ul.needsLocationManagerRunning()).toStrictEqual(true);
+ });
+
+ test('returns false correctly', () => {
+ ul.props = {
+ visible: false,
+ };
+
+ expect(ul.needsLocationManagerRunning()).toStrictEqual(false);
+ });
+ });
+
+ describe('#_onLocationUpdate', () => {
+ test('sets state with new location', () => {
+ expect(ul.state.coordinates).toStrictEqual(null);
+ ul._onLocationUpdate(position);
+ expect(ul.setState).toHaveBeenCalledTimes(1);
+ expect(ul.setState).toHaveBeenCalledWith({
+ coordinates: [4.1036916, 51.5462244],
+ heading: 251.5358428955078,
+ });
+ });
+
+ test('calls "onUpdate"', () => {
+ ul.props.onUpdate = jest.fn();
+ ul._onLocationUpdate(position);
+ expect(ul.props.onUpdate).toHaveBeenCalledTimes(1);
+ expect(ul.props.onUpdate).toHaveBeenCalledWith(position);
+ });
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/interface.test.js b/node_modules/@rnmapbox/maps/__tests__/interface.test.js
new file mode 100644
index 0000000..141defc
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/interface.test.js
@@ -0,0 +1,120 @@
+import MapboxGL from '../src';
+
+describe('Public Interface', () => {
+ it('should contain all expected components and utils', () => {
+ const actualKeys = Object.keys(MapboxGL);
+ const expectedKeys = [
+ // components
+ 'MapView',
+ 'StyleSheet',
+ 'Light',
+ 'PointAnnotation',
+ 'MarkerView',
+ 'Annotation',
+ 'Callout',
+ 'Camera',
+ 'UserLocation',
+ 'NativeUserLocation', // deprecated
+ 'LocationPuck',
+ 'StyleImport',
+ 'Viewport',
+ 'CustomLocationProvider',
+
+ // modules
+ 'offlineManager',
+ 'TileStore',
+ 'offlineManagerLegacy',
+ 'OfflineCreatePackOptions',
+ 'snapshotManager',
+ 'locationManager',
+
+ // layers
+ 'FillLayer',
+ 'FillExtrusionLayer',
+ 'CircleLayer',
+ 'HeatmapLayer',
+ 'LineLayer',
+ 'ModelLayer',
+ 'SymbolLayer',
+ 'BackgroundLayer',
+ 'RasterLayer',
+ 'SkyLayer',
+ 'Terrain',
+ 'Atmosphere',
+
+ // sources
+ 'VectorSource',
+ 'ShapeSource',
+ 'RasterSource',
+ 'ImageSource',
+ 'RasterDemSource',
+ 'Images',
+ 'Image',
+ 'Models',
+
+ // constants
+ 'UserTrackingModes', // deprecated
+ 'UserTrackingMode',
+ 'UserLocationRenderMode',
+ 'StyleURL',
+ 'EventTypes',
+ 'CameraModes',
+ 'StyleSource',
+ 'InterpolationMode',
+ 'LineJoin',
+ 'LineCap',
+ 'LineTranslateAnchor',
+ 'CirclePitchScale',
+ 'CircleTranslateAnchor',
+ 'CirclePitchAlignment',
+ 'FillExtrusionTranslateAnchor',
+ 'FillTranslateAnchor',
+ 'IconRotationAlignment',
+ 'IconTextFit',
+ 'IconAnchor',
+ 'IconTranslateAnchor',
+ 'IconPitchAlignment',
+ 'SymbolPlacement',
+ 'TextAnchor',
+ 'TextJustify',
+ 'TextPitchAlignment',
+ 'TextRotationAlignment',
+ 'TextTransform',
+ 'TextTranslateAnchor',
+ 'LightAnchor',
+ 'OfflinePackDownloadState',
+ 'OfflineCallbackName',
+ 'TileServers',
+
+ // methods
+ 'setWellKnownTileServer',
+ 'clearData',
+ 'setAccessToken',
+ 'getAccessToken',
+ 'setTelemetryEnabled',
+ 'setConnected',
+ 'requestAndroidLocationPermissions',
+ 'getAnnotationsLayerID',
+ 'addCustomHeader',
+ 'removeCustomHeader',
+
+ // animated
+ 'Animated',
+
+ // classes
+ 'AnimatedPoint',
+ 'AnimatedMapPoint',
+ 'AnimatedCoordinatesArray',
+ 'AnimatedShape',
+ 'AnimatedExtractCoordinateFromArray',
+ 'AnimatedRouteCoordinatesArray',
+
+ // helpers
+ 'Logger',
+ 'Style',
+
+ '__experimental',
+ ];
+ actualKeys.forEach((key) => expect(expectedKeys).toContain(key));
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/location/locationManager.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/location/locationManager.test.js
new file mode 100644
index 0000000..0228532
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/location/locationManager.test.js
@@ -0,0 +1,277 @@
+import { NativeModules } from 'react-native';
+
+import LocationManager, {
+ LocationModuleEventEmitter,
+} from '../../../src/modules/location/locationManager';
+
+const MapboxGL = NativeModules.RNMBXModule;
+const MapboxGLLocationManager = NativeModules.RNMBXLocationModule;
+
+const location = {
+ coords: {
+ accuracy: 9.977999687194824,
+ altitude: 44.64373779296875,
+ heading: 251.5358428955078,
+ latitude: 51.5462244,
+ longitude: 4.1036916,
+ speed: 0.08543474227190018,
+ },
+ timestamp: 1573730357879,
+};
+
+describe('LocationManager', () => {
+ const locationManager = LocationManager;
+ describe('constructor', () => {
+ test('initializes locationManager correctly', () => {
+ expect(locationManager._listeners).toStrictEqual([]);
+ expect(locationManager._lastKnownLocation).toStrictEqual(null);
+ expect(locationManager._isListening).toStrictEqual(false);
+ });
+ });
+
+ describe('methods', () => {
+ beforeEach(() => {
+ jest.clearAllMocks();
+ });
+
+ describe('#getLastKnownLocation', () => {
+ test('gets last known location from native locationManager if non available', async () => {
+ jest
+ .spyOn(MapboxGLLocationManager, 'getLastKnownLocation')
+ .mockImplementation(() => location);
+
+ const lastKnownLocation = await locationManager.getLastKnownLocation();
+
+ expect(lastKnownLocation).toStrictEqual(location);
+ expect(locationManager._lastKnownLocation).toStrictEqual(location);
+ expect(
+ MapboxGLLocationManager.getLastKnownLocation,
+ ).toHaveBeenCalledTimes(1);
+
+ locationManager._lastKnownLocation = null;
+ });
+
+ test('returns cached location if available', async () => {
+ locationManager._lastKnownLocation = location;
+
+ await locationManager.getLastKnownLocation();
+
+ expect(locationManager._lastKnownLocation).toStrictEqual(location);
+
+ expect(
+ MapboxGLLocationManager.getLastKnownLocation,
+ ).not.toHaveBeenCalled();
+
+ // reset
+ locationManager._lastKnownLocation = null;
+ });
+ });
+
+ describe('#addListener', () => {
+ const myListener = jest.fn();
+ MapboxGL.LocationCallbackName = { Update: 'MapboxUserLocationUpdate' };
+
+ afterEach(() => {
+ locationManager._listeners = [];
+ });
+
+ test('adds the listener', () => {
+ expect(locationManager._listeners).toStrictEqual([]);
+ locationManager.addListener(myListener);
+ expect(locationManager._listeners).toStrictEqual([myListener]);
+ });
+
+ test('does not re-add same listener', () => {
+ locationManager.addListener(myListener);
+ expect(locationManager._listeners).toStrictEqual([myListener]);
+ locationManager.addListener(myListener);
+ expect(locationManager._listeners).toStrictEqual([myListener]);
+ expect(myListener).not.toHaveBeenCalled();
+ });
+
+ test('calls listener with "lastKnownLocation"', () => {
+ locationManager._lastKnownLocation = location;
+
+ locationManager.addListener(myListener);
+ expect(locationManager._listeners).toStrictEqual([myListener]);
+ expect(myListener).toHaveBeenCalledWith(location);
+ expect(myListener).toHaveBeenCalledTimes(1);
+ });
+ });
+
+ describe('#removeListener', () => {
+ MapboxGLLocationManager.stop = jest.fn();
+
+ test('removes selected listener', () => {
+ // just two different functions
+ const listenerA = jest.fn(() => 'listenerA');
+ const listenerB = () => 'listenerB';
+
+ locationManager.addListener(listenerA);
+ expect(locationManager._listeners).toStrictEqual([listenerA]);
+ expect(MapboxGLLocationManager.stop).not.toHaveBeenCalled();
+
+ locationManager.addListener(listenerB);
+ expect(locationManager._listeners).toStrictEqual([
+ listenerA,
+ listenerB,
+ ]);
+ expect(MapboxGLLocationManager.stop).not.toHaveBeenCalled();
+
+ locationManager.removeListener(listenerB);
+ expect(locationManager._listeners).toStrictEqual([listenerA]);
+ expect(MapboxGLLocationManager.stop).not.toHaveBeenCalled();
+
+ locationManager.removeListener(listenerA);
+ expect(locationManager._listeners).toStrictEqual([]);
+ expect(MapboxGLLocationManager.stop).toHaveBeenCalledTimes(1);
+ });
+ });
+
+ describe('#removeAllListeners', () => {
+ test('removes all listeners', () => {
+ // just two different functions
+ const listenerA = jest.fn(() => 'listenerA');
+ const listenerB = () => 'listenerB';
+
+ locationManager.addListener(listenerA);
+ expect(locationManager._listeners).toStrictEqual([listenerA]);
+ locationManager.addListener(listenerB);
+ expect(locationManager._listeners).toStrictEqual([
+ listenerA,
+ listenerB,
+ ]);
+
+ locationManager.removeAllListeners();
+ expect(locationManager._listeners).toStrictEqual([]);
+ });
+ });
+
+ describe('#start', () => {
+ jest.spyOn(MapboxGLLocationManager, 'start');
+ jest.spyOn(LocationModuleEventEmitter, 'addListener');
+
+ afterEach(() => {
+ locationManager._isListening = false;
+ });
+
+ test('starts native location manager and adds event emitter listener', () => {
+ MapboxGL.LocationCallbackName = { Update: 'MapboxUserLocationUpdate' };
+
+ expect(locationManager._isListening).toStrictEqual(false);
+
+ locationManager.start();
+
+ expect(MapboxGLLocationManager.start).toHaveBeenCalledTimes(1);
+ expect(LocationModuleEventEmitter.addListener).toHaveBeenCalledWith(
+ MapboxGL.LocationCallbackName.Update,
+ locationManager._onUpdate,
+ );
+
+ expect(locationManager._isListening).toStrictEqual(true);
+ });
+
+ test('passes "displacement"', () => {
+ locationManager.start(5); // displacement 5meters
+
+ expect(MapboxGLLocationManager.start).toHaveBeenCalledTimes(1);
+ expect(MapboxGLLocationManager.start).toHaveBeenCalledWith(5);
+ });
+
+ test('does not start when already listening', () => {
+ // we're already listening
+ locationManager._isListening = true;
+
+ expect(locationManager._isListening).toStrictEqual(true);
+
+ locationManager.start();
+
+ expect(MapboxGLLocationManager.start).not.toHaveBeenCalled();
+ expect(LocationModuleEventEmitter.addListener).not.toHaveBeenCalled();
+ });
+ });
+
+ describe('#stop', () => {
+ test('stops native location manager', () => {
+ // set listening to true
+ locationManager._isListening = true;
+
+ // native location manager has no #stop exposed in tests?
+ MapboxGLLocationManager.stop = jest.fn();
+ MapboxGL.LocationCallbackName = { Update: 'MapboxUserLocationUpdate' };
+
+ expect(locationManager._isListening).toStrictEqual(true);
+
+ locationManager.stop();
+
+ expect(MapboxGLLocationManager.stop).toHaveBeenCalledTimes(1);
+ expect(locationManager.subscription.remove).toHaveBeenCalled();
+
+ expect(locationManager._isListening).toStrictEqual(false);
+ });
+
+ test('only removes event emitter listener when listening', () => {
+ // set listening to true
+ locationManager._isListening = false;
+
+ // native location manager has no #stop exposed in tests?
+ MapboxGLLocationManager.stop = jest.fn();
+ MapboxGL.LocationCallbackName = { Update: 'MapboxUserLocationUpdate' };
+
+ expect(locationManager._isListening).toStrictEqual(false);
+
+ locationManager.stop();
+
+ expect(MapboxGLLocationManager.stop).toHaveBeenCalledTimes(1);
+ expect(locationManager.subscription.remove).not.toHaveBeenCalled();
+ });
+ });
+
+ describe('#setMinDisplacement', () => {
+ test('calls native "setMinDisplacement"', () => {
+ MapboxGLLocationManager.setMinDisplacement = jest.fn();
+ locationManager.setMinDisplacement(5);
+ expect(MapboxGLLocationManager.setMinDisplacement).toHaveBeenCalledWith(
+ 5,
+ );
+ });
+ });
+
+ describe('#setRequestsAlwaysUse', () => {
+ test('calls native "setRequestsAlwaysUse"', () => {
+ MapboxGLLocationManager.setRequestsAlwaysUse = jest.fn();
+ locationManager.setRequestsAlwaysUse(true);
+ expect(
+ MapboxGLLocationManager.setRequestsAlwaysUse,
+ ).toHaveBeenCalledWith(true);
+ });
+ });
+
+ describe('#onUpdate', () => {
+ beforeEach(() => {
+ locationManager._lastKnownLocation = null;
+ });
+
+ test('sets "_lastKnownLocation"', () => {
+ locationManager._onUpdate(location);
+
+ expect(locationManager._lastKnownLocation).toStrictEqual(location);
+ });
+
+ test('calls listeners with location', () => {
+ const listeners = [jest.fn(), jest.fn(), jest.fn()];
+
+ listeners.forEach((listener) => {
+ locationManager.addListener(listener);
+ });
+
+ locationManager._onUpdate(location);
+
+ listeners.forEach((listener) => {
+ expect(listener).toHaveBeenCalledTimes(1);
+ expect(listener).toHaveBeenCalledWith(location);
+ });
+ });
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflineCreatePackOptions.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflineCreatePackOptions.test.js
new file mode 100644
index 0000000..7fd9f68
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflineCreatePackOptions.test.js
@@ -0,0 +1,74 @@
+import { featureCollection, point } from '@turf/helpers';
+
+import OfflineCreatePackOptions from '../../../src/modules/offline/OfflineCreatePackOptions';
+
+describe('OfflineCreatePackOptions', () => {
+ const options = {
+ name: 'test',
+ styleURL: 'mapbox://fake-style-url',
+ bounds: [
+ [0, 1],
+ [2, 3],
+ ],
+ minZoom: 1,
+ maxZoom: 22,
+ metadata: {
+ customData: 'hiking',
+ },
+ };
+
+ it('should create valid options', () => {
+ const actualOptions = new OfflineCreatePackOptions(options);
+ expect(actualOptions.name).toEqual(options.name);
+ expect(actualOptions.styleURL).toEqual(options.styleURL);
+
+ // we expect a feature collection string
+ expect(actualOptions.bounds).toEqual(
+ JSON.stringify(
+ featureCollection([point(options.bounds[0]), point(options.bounds[1])]),
+ ),
+ );
+
+ expect(actualOptions.minZoom).toEqual(options.minZoom);
+ expect(actualOptions.maxZoom).toEqual(options.maxZoom);
+
+ // we expect a json string
+ expect(actualOptions.metadata).toEqual(
+ JSON.stringify({
+ customData: options.metadata.customData,
+ name: options.name,
+ }),
+ );
+ });
+
+ it('should throw error without a styleURL', () => {
+ const invalidOptions = Object.assign({}, options, {
+ styleURL: undefined,
+ });
+ verifyErrorThrown(invalidOptions);
+ });
+
+ it('should throw error without a name', () => {
+ const invalidOptions = Object.assign({}, options, {
+ name: undefined,
+ });
+ verifyErrorThrown(invalidOptions);
+ });
+
+ it('should throw error without bounds', () => {
+ const invalidOptions = Object.assign({}, options, {
+ bounds: undefined,
+ });
+ verifyErrorThrown(invalidOptions);
+ });
+
+ it('should throw error without options', () => {
+ verifyErrorThrown();
+ verifyErrorThrown(null);
+ verifyErrorThrown({});
+ });
+});
+
+function verifyErrorThrown(invalidOptions) {
+ expect(() => new OfflineCreatePackOptions(invalidOptions)).toThrow();
+}
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflinePack.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflinePack.test.js
new file mode 100644
index 0000000..0ff0415
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/offline/OfflinePack.test.js
@@ -0,0 +1,50 @@
+import { NativeModules } from 'react-native';
+
+import OfflinePack from '../../../src/modules/offline/OfflinePack';
+
+describe('OfflinePack', () => {
+ const fakeNativePack = {
+ bounds: [
+ [0, 1],
+ [2, 3],
+ ],
+ metadata: '{"name":"test"}',
+ };
+
+ it('should contain a valid pack', () => {
+ const offlinePack = new OfflinePack(fakeNativePack);
+ expect(offlinePack.bounds).toEqual(fakeNativePack.bounds);
+ expect(offlinePack.name).toEqual('test');
+ expect(offlinePack.metadata).toEqual(JSON.parse(fakeNativePack.metadata));
+ });
+
+ it('should resume pack download', () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'resumePackDownload',
+ );
+ const offlinePack = new OfflinePack(fakeNativePack);
+ offlinePack.resume();
+ expect(spy).toHaveBeenCalled();
+ spy.mockRestore();
+ });
+
+ it('should pause pack download', () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'pausePackDownload',
+ );
+ const offlinePack = new OfflinePack(fakeNativePack);
+ offlinePack.pause();
+ expect(spy).toHaveBeenCalled();
+ spy.mockRestore();
+ });
+
+ it('should get pack status', () => {
+ const spy = jest.spyOn(NativeModules.RNMBXOfflineModule, 'getPackStatus');
+ const offlinePack = new OfflinePack(fakeNativePack);
+ offlinePack.status();
+ expect(spy).toHaveBeenCalled();
+ spy.mockRestore();
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManager.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManager.test.js
new file mode 100644
index 0000000..d0e5d3d
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManager.test.js
@@ -0,0 +1,251 @@
+import { NativeModules, Platform } from 'react-native';
+
+import MapboxGL from '../../../src';
+import { OfflineModuleEventEmitter } from '../../../src/modules/offline/offlineManager';
+
+describe('offlineManager', () => {
+ const packOptions = {
+ name: 'test',
+ styleURL: 'mapbox://fake-style-url',
+ bounds: [
+ [0, 1],
+ [2, 3],
+ ],
+ minZoom: 1,
+ maxZoom: 22,
+ };
+
+ const mockOnProgressEvent = {
+ type: 'offlinestatus',
+ payload: {
+ name: packOptions.name,
+ state: MapboxGL.OfflinePackDownloadState.Active,
+ progress: 50.0,
+ },
+ };
+
+ const mockOnProgressCompleteEvent = {
+ type: 'offlinestatus',
+ payload: {
+ name: packOptions.name,
+ state: MapboxGL.OfflinePackDownloadState.Complete,
+ progress: 100.0,
+ },
+ };
+
+ const mockErrorEvent = {
+ type: 'offlineerror',
+ payload: {
+ name: packOptions.name,
+ message: 'unit test error',
+ },
+ };
+
+ afterEach(async () => {
+ const packs = await MapboxGL.offlineManager.getPacks();
+ for (const pack of packs) {
+ await MapboxGL.offlineManager.deletePack(pack.name);
+ }
+
+ jest.clearAllMocks();
+ });
+
+ it('should create pack', async () => {
+ let offlinePack = await MapboxGL.offlineManager.getPack(packOptions.name);
+ expect(offlinePack).toBeFalsy();
+
+ await MapboxGL.offlineManager.createPack(packOptions);
+ offlinePack = await MapboxGL.offlineManager.getPack(packOptions.name);
+ expect(offlinePack).toBeTruthy();
+ });
+
+ it('should delete pack', async () => {
+ await MapboxGL.offlineManager.createPack(packOptions);
+ let offlinePack = await MapboxGL.offlineManager.getPack(packOptions.name);
+ expect(offlinePack).toBeTruthy();
+
+ await MapboxGL.offlineManager.deletePack(packOptions.name);
+ offlinePack = await MapboxGL.offlineManager.getPack(packOptions.name);
+ expect(offlinePack).toBeFalsy();
+ });
+
+ it('should migrate offline cache', async () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'migrateOfflineCache',
+ );
+ await MapboxGL.offlineManager.migrateOfflineCache();
+ expect(spy).toHaveBeenCalled();
+ });
+
+ it('should set max tile count limit', () => {
+ const expectedLimit = 2000;
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'setTileCountLimit',
+ );
+ MapboxGL.offlineManager.setTileCountLimit(expectedLimit);
+ expect(spy).toHaveBeenCalledWith(expectedLimit);
+ spy.mockRestore();
+ });
+
+ it('should set progress event throttle value', () => {
+ const expectedThrottleValue = 500;
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'setProgressEventThrottle',
+ );
+ MapboxGL.offlineManager.setProgressEventThrottle(expectedThrottleValue);
+ expect(spy).toHaveBeenCalledWith(expectedThrottleValue);
+ spy.mockRestore();
+ });
+
+ describe('Events', () => {
+ it('should subscribe to native events', async () => {
+ const spy = jest.spyOn(OfflineModuleEventEmitter, 'addListener');
+ const noop = () => {};
+ await MapboxGL.offlineManager.createPack(packOptions, noop, noop);
+ expect(spy).toHaveBeenCalledTimes(2);
+ spy.mockClear();
+ });
+
+ it('should call progress listener', async () => {
+ const listener = jest.fn();
+ await MapboxGL.offlineManager.createPack(packOptions, listener);
+ const expectedOfflinePack = await MapboxGL.offlineManager.getPack(
+ packOptions.name,
+ );
+ MapboxGL.offlineManager._onProgress(mockOnProgressEvent);
+ expect(listener).toHaveBeenCalledWith(
+ expectedOfflinePack,
+ mockOnProgressEvent.payload,
+ );
+ });
+
+ it('should call error listener', async () => {
+ const listener = jest.fn();
+ await MapboxGL.offlineManager.createPack(packOptions, null, listener);
+ const expectedOfflinePack = await MapboxGL.offlineManager.getPack(
+ packOptions.name,
+ );
+ MapboxGL.offlineManager._onError(mockErrorEvent);
+ expect(listener).toHaveBeenCalledWith(
+ expectedOfflinePack,
+ mockErrorEvent.payload,
+ );
+ });
+
+ it('should not call listeners after unsubscribe', async () => {
+ const listener = jest.fn();
+ await MapboxGL.offlineManager.createPack(packOptions, listener, listener);
+ MapboxGL.offlineManager.unsubscribe(packOptions.name);
+ MapboxGL.offlineManager._onProgress(mockOnProgressEvent);
+ MapboxGL.offlineManager._onError(mockErrorEvent);
+ expect(listener).not.toHaveBeenCalled();
+ });
+
+ it('should unsubscribe from native events', async () => {
+ const noop = () => {};
+
+ await MapboxGL.offlineManager.createPack(packOptions, noop, noop);
+ MapboxGL.offlineManager.unsubscribe(packOptions.name);
+
+ expect(
+ MapboxGL.offlineManager.subscriptionProgress.remove,
+ ).toHaveBeenCalledTimes(1);
+ expect(
+ MapboxGL.offlineManager.subscriptionError.remove,
+ ).toHaveBeenCalledTimes(1);
+ });
+
+ it('should unsubscribe event listeners once a pack download has completed', async () => {
+ const listener = jest.fn();
+ await MapboxGL.offlineManager.createPack(packOptions, listener, listener);
+
+ expect(
+ MapboxGL.offlineManager._hasListeners(
+ packOptions.name,
+ MapboxGL.offlineManager._progressListeners,
+ ),
+ ).toBeTruthy();
+
+ expect(
+ MapboxGL.offlineManager._hasListeners(
+ packOptions.name,
+ MapboxGL.offlineManager._errorListeners,
+ ),
+ ).toBeTruthy();
+
+ MapboxGL.offlineManager._onProgress(mockOnProgressCompleteEvent);
+
+ expect(
+ MapboxGL.offlineManager._hasListeners(
+ packOptions.name,
+ MapboxGL.offlineManager._progressListeners,
+ ),
+ ).toBeFalsy();
+
+ expect(
+ MapboxGL.offlineManager._hasListeners(
+ packOptions.name,
+ MapboxGL.offlineManager._errorListeners,
+ ),
+ ).toBeFalsy();
+ });
+ });
+
+ describe('Android', () => {
+ beforeEach(() => (Platform.OS = 'android'));
+
+ it('should set pack observer manually', async () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'setPackObserver',
+ );
+
+ const name = `test-${Date.now()}`;
+ const noop = () => {};
+ const options = { ...packOptions, name };
+ await MapboxGL.offlineManager.createPack(options);
+ await MapboxGL.offlineManager.subscribe(name, noop, noop);
+
+ expect(spy).toHaveBeenCalled();
+ spy.mockRestore();
+ });
+
+ it('should not set pack observer manually during create flow', async () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'setPackObserver',
+ );
+
+ const name = `test-${Date.now()}`;
+ const noop = () => {};
+ const options = { ...packOptions, name };
+ await MapboxGL.offlineManager.createPack(options, noop, noop);
+
+ expect(spy).not.toHaveBeenCalled();
+ spy.mockRestore();
+ });
+ });
+
+ describe('iOS', () => {
+ beforeEach(() => (Platform.OS = 'ios'));
+
+ it('should not set pack observer manually', async () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModule,
+ 'setPackObserver',
+ );
+
+ const name = `test-${Date.now()}`;
+ const noop = () => {};
+ const options = { ...packOptions, name };
+ await MapboxGL.offlineManager.createPack(options);
+ await MapboxGL.offlineManager.subscribe(name, noop, noop);
+
+ expect(spy).not.toHaveBeenCalled();
+ spy.mockRestore();
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManagerLegacy.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManagerLegacy.test.js
new file mode 100644
index 0000000..ee88b02
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/offline/offlineManagerLegacy.test.js
@@ -0,0 +1,57 @@
+import { NativeModules } from 'react-native';
+
+import Mapbox from '../../../src';
+
+describe('offlineManagerLegacy', () => {
+ const packOptions = {
+ name: 'test',
+ styleURL: 'mapbox://fake-style-url',
+ bounds: [
+ [0, 1],
+ [2, 3],
+ ],
+ minZoom: 1,
+ maxZoom: 22,
+ };
+
+ afterEach(async () => {
+ const packs = await Mapbox.offlineManagerLegacy.getPacks();
+ for (const pack of packs) {
+ await Mapbox.offlineManagerLegacy.deletePack(pack.name);
+ }
+
+ jest.clearAllMocks();
+ });
+
+ it('should create pack', async () => {
+ let offlinePack = await Mapbox.offlineManagerLegacy.getPack(
+ packOptions.name,
+ );
+ expect(offlinePack).toBeFalsy();
+
+ await Mapbox.offlineManagerLegacy.createPack(packOptions);
+ offlinePack = await Mapbox.offlineManagerLegacy.getPack(packOptions.name);
+ expect(offlinePack).toBeTruthy();
+ });
+
+ it('should delete pack', async () => {
+ await Mapbox.offlineManagerLegacy.createPack(packOptions);
+ let offlinePack = await Mapbox.offlineManagerLegacy.getPack(
+ packOptions.name,
+ );
+ expect(offlinePack).toBeTruthy();
+
+ await Mapbox.offlineManagerLegacy.deletePack(packOptions.name);
+ offlinePack = await Mapbox.offlineManagerLegacy.getPack(packOptions.name);
+ expect(offlinePack).toBeFalsy();
+ });
+
+ it('should migrate offline cache', async () => {
+ const spy = jest.spyOn(
+ NativeModules.RNMBXOfflineModuleLegacy,
+ 'migrateOfflineCache',
+ );
+ await Mapbox.offlineManagerLegacy.migrateOfflineCache();
+ expect(spy).toHaveBeenCalled();
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/SnapshotOptions.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/SnapshotOptions.test.js
new file mode 100644
index 0000000..f19eeb9
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/SnapshotOptions.test.js
@@ -0,0 +1,77 @@
+import { NativeModules } from 'react-native';
+
+import SnapshotOptions from '../../../src/modules/snapshot/SnapshotOptions';
+import { makePoint, makeFeatureCollection } from '../../../src/utils/geoUtils';
+
+describe('SnapshotOptions', () => {
+ it('should throw error if no centerCoordinate or bounds are provided', () => {
+ expect(() => new SnapshotOptions()).toThrow();
+ expect(() => new SnapshotOptions({ styleURL: 'test' })).toThrow();
+ });
+
+ it('should create options with valid defaults', () => {
+ const centerCoordinate = [1, 2];
+ const options = new SnapshotOptions({ centerCoordinate });
+
+ expect(options.toJSON()).toEqual({
+ styleURL: NativeModules.RNMBXModule.StyleURL.Street,
+ heading: 0.0,
+ pitch: 0.0,
+ zoomLevel: 16.0,
+ width: 50.0,
+ height: 50.0,
+ writeToDisk: false,
+ centerCoordinate: JSON.stringify(makePoint(centerCoordinate)),
+ withLogo: true,
+ });
+ });
+
+ it('should create options with centerCoordinate', () => {
+ const expectedOptions = {
+ centerCoordinate: [1, 2],
+ heading: 60.0,
+ pitch: 45.0,
+ zoomLevel: 2.0,
+ width: 314,
+ height: 600,
+ writeToDisk: true,
+ withLogo: true,
+ styleURL: NativeModules.RNMBXModule.StyleURL.Dark,
+ };
+
+ const options = new SnapshotOptions(expectedOptions);
+ expect(options.toJSON()).toEqual({
+ ...expectedOptions,
+ centerCoordinate: JSON.stringify(
+ makePoint(expectedOptions.centerCoordinate),
+ ),
+ });
+ });
+
+ it('should create options with bounds', () => {
+ const expectedOptions = {
+ bounds: [
+ [1, 2],
+ [3, 4],
+ ],
+ width: 400,
+ height: 600,
+ styleURL: NativeModules.RNMBXModule.StyleURL.Light,
+ writeToDisk: false,
+ withLogo: true,
+ };
+
+ const geoJSONBounds = JSON.stringify(
+ makeFeatureCollection(expectedOptions.bounds.map((c) => makePoint(c))),
+ );
+
+ const options = new SnapshotOptions(expectedOptions);
+ expect(options.toJSON()).toEqual({
+ ...expectedOptions,
+ heading: 0,
+ pitch: 0,
+ zoomLevel: 16,
+ bounds: geoJSONBounds,
+ });
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/snapshotManager.test.js b/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/snapshotManager.test.js
new file mode 100644
index 0000000..fb07864
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/modules/snapshot/snapshotManager.test.js
@@ -0,0 +1,9 @@
+import MapboxGL from '../../../src';
+
+describe('snapshotManager', () => {
+ it('should resolve uri', async () => {
+ const options = { centerCoordinate: [1, 2] };
+ const uri = await MapboxGL.snapshotManager.takeSnap(options);
+ expect(uri).toEqual('file://test.png');
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/utils/BridgeValue.test.js b/node_modules/@rnmapbox/maps/__tests__/utils/BridgeValue.test.js
new file mode 100644
index 0000000..7eaa352
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/utils/BridgeValue.test.js
@@ -0,0 +1,172 @@
+import BridgeValue from '../../src/utils/BridgeValue';
+
+describe('BridgeValue', () => {
+ it('should convert to array of numbers', () => {
+ const bridgeValue = new BridgeValue([1, 2]);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ { type: 'number', value: 1 },
+ { type: 'number', value: 2 },
+ ],
+ });
+ });
+
+ it('should convert to array of string', () => {
+ const bridgeValue = new BridgeValue(['hello', 'world']);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ { type: 'string', value: 'hello' },
+ { type: 'string', value: 'world' },
+ ],
+ });
+ });
+
+ it('should convert to array of booleans', () => {
+ const bridgeValue = new BridgeValue([true, false]);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ { type: 'boolean', value: true },
+ { type: 'boolean', value: false },
+ ],
+ });
+ });
+
+ it('should convert to array of hashmaps', () => {
+ const bridgeValue = new BridgeValue([
+ { prop1: 1 },
+ { prop2: 'value' },
+ { prop3: false },
+ ]);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ {
+ type: 'hashmap',
+ value: [
+ [
+ { type: 'string', value: 'prop1' },
+ { type: 'number', value: 1 },
+ ],
+ ],
+ },
+ {
+ type: 'hashmap',
+ value: [
+ [
+ { type: 'string', value: 'prop2' },
+ { type: 'string', value: 'value' },
+ ],
+ ],
+ },
+ {
+ type: 'hashmap',
+ value: [
+ [
+ { type: 'string', value: 'prop3' },
+ { type: 'boolean', value: false },
+ ],
+ ],
+ },
+ ],
+ });
+ });
+
+ it('should convert complex expression', () => {
+ const bridgeValue = new BridgeValue([
+ 'all',
+ ['foo', 'bar'],
+ ['baz', 'bao'],
+ ]);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ {
+ type: 'string',
+ value: 'all',
+ },
+ {
+ type: 'array',
+ value: [
+ { type: 'string', value: 'foo' },
+ { type: 'string', value: 'bar' },
+ ],
+ },
+ {
+ type: 'array',
+ value: [
+ { type: 'string', value: 'baz' },
+ { type: 'string', value: 'bao' },
+ ],
+ },
+ ],
+ });
+ });
+
+ it('should convert to array of arrays', () => {
+ const bridgeValue = new BridgeValue([
+ [1],
+ ['value'],
+ [true],
+ [{ prop: 'value' }],
+ ]);
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'array',
+ value: [
+ { type: 'array', value: [{ type: 'number', value: 1 }] },
+ { type: 'array', value: [{ type: 'string', value: 'value' }] },
+ { type: 'array', value: [{ type: 'boolean', value: true }] },
+ {
+ type: 'array',
+ value: [
+ {
+ type: 'hashmap',
+ value: [
+ [
+ { type: 'string', value: 'prop' },
+ { type: 'string', value: 'value' },
+ ],
+ ],
+ },
+ ],
+ },
+ ],
+ });
+ });
+
+ it('should convert to number', () => {
+ const bridgeValue = new BridgeValue(1);
+ expect(bridgeValue.toJSON()).toEqual({ type: 'number', value: 1 });
+ });
+
+ it('should convert to string', () => {
+ const bridgeValue = new BridgeValue('value');
+ expect(bridgeValue.toJSON()).toEqual({ type: 'string', value: 'value' });
+ });
+
+ it('should convert to boolean', () => {
+ const bridgeValue = new BridgeValue(true);
+ expect(bridgeValue.toJSON()).toEqual({ type: 'boolean', value: true });
+ });
+
+ it('should convert to hashmap', () => {
+ const bridgeValue = new BridgeValue({ prop1: 'value1', prop2: 2 });
+ expect(bridgeValue.toJSON()).toEqual({
+ type: 'hashmap',
+ value: [
+ [
+ { type: 'string', value: 'prop1' },
+ { type: 'string', value: 'value1' },
+ ],
+ [
+ { type: 'string', value: 'prop2' },
+ { type: 'number', value: 2 },
+ ],
+ ],
+ });
+ });
+
+ it('should throw error', () => {});
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/utils/animated/AnimatedCoordinatesArray.test.js b/node_modules/@rnmapbox/maps/__tests__/utils/animated/AnimatedCoordinatesArray.test.js
new file mode 100644
index 0000000..19c74ff
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/utils/animated/AnimatedCoordinatesArray.test.js
@@ -0,0 +1,192 @@
+import FakeTimers from '@sinonjs/fake-timers';
+import { Animated, Easing } from 'react-native';
+import TestRenderer from 'react-test-renderer';
+import React from 'react';
+
+import { AnimatedShape, AnimatedCoordinatesArray } from '../../../src/classes';
+import { ShapeSource } from '../../../src/components/ShapeSource';
+
+let clock = null;
+let oldNodeEnv = null;
+
+beforeAll(() => {
+ clock = FakeTimers.install();
+ clock._requestedAnimationFrames = [];
+ clock.requestAnimationFrame = (callback) => {
+ clock._requestedAnimationFrames.push(callback);
+ };
+ clock.fireRequestAnimationFrames = () => {
+ const oldRAF = clock._requestedAnimationFrames;
+ clock._requestedAnimationFrames = [];
+ oldRAF.forEach((cb) => cb(Date.now()));
+ };
+
+ // animated will not call nativeProps in test mode
+ // https://github.com/facebook/react-native/blob/34d3373bb0f7ee405292bf993163f29759ba5205/Libraries/Animated/createAnimatedComponent.js#L150-L156
+ oldNodeEnv = process.env.NODE_ENV;
+ process.env.NODE_ENV = 'dev';
+});
+
+afterAll(() => {
+ process.env.NODE_ENV = oldNodeEnv;
+ clock.uninstall();
+});
+
+const AnimatedShapeSource = Animated.createAnimatedComponent(ShapeSource);
+
+function _nativeRef(ref) {
+ return ref._nativeRef;
+}
+
+describe('AnimatedShapeSource', () => {
+ test('testSetNativeProps', () => {
+ AnimatedShapeSource.__skipSetNativeProps_FOR_TESTS_ONLY = false;
+ const coordinates = new AnimatedCoordinatesArray([
+ [1, 1],
+ [10, 10],
+ ]);
+
+ let shapeSourceRef;
+ // eslint-disable-next-line no-unused-vars
+ const testRenderer = TestRenderer.create(
+ (shapeSourceRef = ref)}
+ />,
+ );
+ const setNativeProps = jest.fn();
+ _nativeRef(shapeSourceRef).setNativeProps = setNativeProps;
+
+ coordinates
+ .timing({
+ toValue: [
+ [21, 21],
+ [30, 30],
+ ],
+ duration: 20,
+ easing: Easing.linear,
+ useNativeDriver: false,
+ })
+ .start();
+
+ expect(setNativeProps).toHaveBeenCalledTimes(0);
+ // process.env.NODE_ENV = 'TEST_butDontSkipSetNativeProps' for future RN
+ for (let i = 0; i < 5; i++) {
+ clock.tick(4);
+ clock.fireRequestAnimationFrames();
+ expect(setNativeProps).toHaveBeenCalledTimes(i + 1);
+ expect(setNativeProps).toHaveBeenCalledWith({
+ shape: JSON.stringify({
+ type: 'LineString',
+ coordinates: [
+ [1 + (i + 1) * 4, 1 + (i + 1) * 4],
+ [10 + (i + 1) * 4, 10 + (i + 1) * 4],
+ ],
+ }),
+ });
+ }
+ // process.env.NODE_ENV = 'TEST';
+ });
+
+ test('testAddingCoords', () => {
+ AnimatedShapeSource.__skipSetNativeProps_FOR_TESTS_ONLY = false;
+ const coordinates = new AnimatedCoordinatesArray([
+ [1, 1],
+ [10, 10],
+ ]);
+
+ let shapeSourceRef;
+ // eslint-disable-next-line no-unused-vars
+ const testRenderer = TestRenderer.create(
+ (shapeSourceRef = ref)}
+ />,
+ );
+ const setNativeProps = jest.fn();
+ _nativeRef(shapeSourceRef).setNativeProps = setNativeProps;
+
+ coordinates
+ .timing({
+ toValue: [
+ [21, 21],
+ [30, 30],
+ [50, 50],
+ ],
+ duration: 20,
+ easing: Easing.linear,
+ useNativeDriver: false,
+ })
+ .start();
+
+ expect(setNativeProps).toHaveBeenCalledTimes(0);
+ // process.env.NODE_ENV = 'TEST_butDontSkipSetNativeProps' for future RN
+ for (let i = 0; i < 5; i++) {
+ clock.tick(4);
+ clock.fireRequestAnimationFrames();
+ expect(setNativeProps).toHaveBeenCalledTimes(i + 1);
+ expect(setNativeProps).toHaveBeenCalledWith({
+ shape: JSON.stringify({
+ type: 'LineString',
+ coordinates: [
+ [1 + (i + 1) * 4, 1 + (i + 1) * 4],
+ [10 + (i + 1) * 4, 10 + (i + 1) * 4],
+ [10 + (i + 1) * 8, 10 + (i + 1) * 8],
+ ],
+ }),
+ });
+ }
+ // process.env.NODE_ENV = 'TEST';
+ });
+
+ test('testRemovingCoords', () => {
+ AnimatedShapeSource.__skipSetNativeProps_FOR_TESTS_ONLY = false;
+ const coordinates = new AnimatedCoordinatesArray([
+ [1, 1],
+ [10, 10],
+ [50, 50],
+ ]);
+
+ let shapeSourceRef;
+ // eslint-disable-next-line no-unused-vars
+ const testRenderer = TestRenderer.create(
+ (shapeSourceRef = ref)}
+ />,
+ );
+ const setNativeProps = jest.fn();
+ _nativeRef(shapeSourceRef).setNativeProps = setNativeProps;
+
+ coordinates
+ .timing({
+ toValue: [
+ [21, 21],
+ [30, 30],
+ ],
+ duration: 20,
+ easing: Easing.linear,
+ useNativeDriver: false,
+ })
+ .start();
+
+ expect(setNativeProps).toHaveBeenCalledTimes(0);
+ // process.env.NODE_ENV = 'TEST_butDontSkipSetNativeProps' for future RN
+ for (let i = 0; i < 5; i++) {
+ clock.tick(4);
+ clock.fireRequestAnimationFrames();
+ expect(setNativeProps).toHaveBeenCalledTimes(i + 1);
+ expect(setNativeProps).toHaveBeenCalledWith({
+ shape: JSON.stringify({
+ type: 'LineString',
+ coordinates: [
+ [1 + (i + 1) * 4, 1 + (i + 1) * 4],
+ [10 + (i + 1) * 4, 10 + (i + 1) * 4],
+ [50 - (i + 1) * 4, 50 - (i + 1) * 4],
+ ],
+ }),
+ });
+ }
+ // process.env.NODE_ENV = 'TEST';
+ });
+});
diff --git a/node_modules/@rnmapbox/maps/__tests__/utils/filterUtils.test.js b/node_modules/@rnmapbox/maps/__tests__/utils/filterUtils.test.js
new file mode 100644
index 0000000..3aed967
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/__tests__/utils/filterUtils.test.js
@@ -0,0 +1,67 @@
+import { getFilter } from '../../src/utils/filterUtils';
+import BridgeValue from '../../src/utils/BridgeValue';
+
+const FilterItem = BridgeValue;
+
+describe('filterUtils', () => {
+ it('should parse flat filter', () => {
+ const filter = ['==', 'rating', 10];
+ expect(getFilter(filter)).toEqual(['==', 'rating', 10]);
+ });
+
+ it('should parse filter with array', () => {
+ const filter = [
+ 'all',
+ ['==', 'class', 'street_limited'],
+ ['>=', 'admin_level', 3],
+ ['==', 'enabled', true],
+ ];
+ expect(getFilter(filter)).toEqual([
+ 'all',
+ ['==', 'class', 'street_limited'],
+ ['>=', 'admin_level', 3],
+ ['==', 'enabled', true],
+ ]);
+ });
+
+ it('should return empty array if filter type passed in is not an array', () => {
+ expect(getFilter()).toEqual([]);
+ expect(getFilter(null)).toEqual([]);
+ expect(getFilter({})).toEqual([]);
+ });
+
+ it('should create boolean filter item', () => {
+ verifyFilterItem(new FilterItem(true), 'boolean', true);
+ verifyFilterItem(new FilterItem(false), 'boolean', false);
+ });
+
+ it('should create number filter item', () => {
+ verifyFilterItem(new FilterItem(0), 'number', 0);
+ verifyFilterItem(new FilterItem(1), 'number', 1);
+ verifyFilterItem(new FilterItem(100), 'number', 100);
+ });
+
+ it('should create string filter item', () => {
+ verifyFilterItem(new FilterItem('0'), 'string', '0');
+ verifyFilterItem(new FilterItem('test'), 'string', 'test');
+ verifyFilterItem(new FilterItem('true'), 'string', 'true');
+ verifyFilterItem(new FilterItem('false'), 'string', 'false');
+ });
+
+ it('should throw error if the filter item is not a primitive', () => {
+ verifyErrorFilterItem(undefined);
+ verifyErrorFilterItem(null);
+ });
+});
+
+function verifyFilterItem(filterItem, expectedType, expectedValue) {
+ expect(filterItem.toJSON()).toEqual({
+ type: expectedType,
+ value: expectedValue,
+ });
+}
+
+function verifyErrorFilterItem(value) {
+ const filterItem = new FilterItem(value);
+ expect(() => filterItem.toJSON()).toThrow();
+}
diff --git a/node_modules/@rnmapbox/maps/android/.gitignore b/node_modules/@rnmapbox/maps/android/.gitignore
new file mode 100644
index 0000000..39fb081
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/.gitignore
@@ -0,0 +1,9 @@
+*.iml
+.gradle
+/local.properties
+/.idea/workspace.xml
+/.idea/libraries
+.DS_Store
+/build
+/captures
+.externalNativeBuild
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/results.bin b/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/results.bin
new file mode 100644
index 0000000..0d259dd
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/results.bin
@@ -0,0 +1 @@
+o/classes
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/transformed/classes/classes_dex/classes.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/transformed/classes/classes_dex/classes.dex
new file mode 100644
index 0000000..26d111f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/51a99a535d4f174c8294a5653cfa96d8/transformed/classes/classes_dex/classes.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/results.bin b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/results.bin
new file mode 100644
index 0000000..7ed749e
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/results.bin
@@ -0,0 +1 @@
+o/bundleLibRuntimeToDirDebug
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.dex
new file mode 100644
index 0000000..e172c38
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.dex
new file mode 100644
index 0000000..961fbac
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.dex
new file mode 100644
index 0000000..a4aa728
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.dex
new file mode 100644
index 0000000..cd1d1b0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.dex
new file mode 100644
index 0000000..131220d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.dex
new file mode 100644
index 0000000..5e5f536
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.dex
new file mode 100644
index 0000000..df39b93
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.dex
new file mode 100644
index 0000000..b5601bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.dex
new file mode 100644
index 0000000..4694e58
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.dex
new file mode 100644
index 0000000..4b201a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.dex
new file mode 100644
index 0000000..af66f02
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.dex
new file mode 100644
index 0000000..29d7339
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.dex
new file mode 100644
index 0000000..1b4a63f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.dex
new file mode 100644
index 0000000..2d4f9c2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.dex
new file mode 100644
index 0000000..f9eea38
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.dex
new file mode 100644
index 0000000..259754c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.dex
new file mode 100644
index 0000000..4ea13ff
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.dex
new file mode 100644
index 0000000..12d4e73
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.dex
new file mode 100644
index 0000000..fe118f2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.dex
new file mode 100644
index 0000000..c962a03
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.dex
new file mode 100644
index 0000000..95f793f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.dex
new file mode 100644
index 0000000..74cb305
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.dex
new file mode 100644
index 0000000..8417e83
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.dex
new file mode 100644
index 0000000..deee14c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.dex
new file mode 100644
index 0000000..24cc8fa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.dex
new file mode 100644
index 0000000..adcb3cc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.dex
new file mode 100644
index 0000000..3b6251e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.dex
new file mode 100644
index 0000000..fbfab7b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.dex
new file mode 100644
index 0000000..ecf2ec4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.dex
new file mode 100644
index 0000000..e09c553
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.dex
new file mode 100644
index 0000000..9fd9f3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.dex
new file mode 100644
index 0000000..571e6df
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.dex
new file mode 100644
index 0000000..20401b0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.dex
new file mode 100644
index 0000000..a1443fa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.dex
new file mode 100644
index 0000000..a083a1c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.dex
new file mode 100644
index 0000000..8a758f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.dex
new file mode 100644
index 0000000..f8e568b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.dex
new file mode 100644
index 0000000..968e754
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.dex
new file mode 100644
index 0000000..2a35d63
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.dex
new file mode 100644
index 0000000..46dec93
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.dex
new file mode 100644
index 0000000..e0371b4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.dex
new file mode 100644
index 0000000..d3faae8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.dex
new file mode 100644
index 0000000..2a8b82d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.dex
new file mode 100644
index 0000000..55e1aa7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.dex
new file mode 100644
index 0000000..4b309b4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.dex
new file mode 100644
index 0000000..ae16f64
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.dex
new file mode 100644
index 0000000..1b05c1b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.dex
new file mode 100644
index 0000000..bbed903
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.dex
new file mode 100644
index 0000000..fa0e2c2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.dex
new file mode 100644
index 0000000..e812ec3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.dex
new file mode 100644
index 0000000..9b5bc2a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.dex
new file mode 100644
index 0000000..fa2cb3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.dex
new file mode 100644
index 0000000..fc25704
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.dex
new file mode 100644
index 0000000..26b32a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.dex
new file mode 100644
index 0000000..e6f65d9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.dex
new file mode 100644
index 0000000..a01fb3a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.dex
new file mode 100644
index 0000000..588a710
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.dex
new file mode 100644
index 0000000..4db6375
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.dex
new file mode 100644
index 0000000..262bbce
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.dex
new file mode 100644
index 0000000..8d0e36e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.dex
new file mode 100644
index 0000000..5171b08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.dex
new file mode 100644
index 0000000..b12bd78
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/BuildConfig.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/BuildConfig.dex
new file mode 100644
index 0000000..cb48161
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/BuildConfig.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.dex
new file mode 100644
index 0000000..da8095d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.dex
new file mode 100644
index 0000000..ae7db8a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.dex
new file mode 100644
index 0000000..55deb64
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.dex
new file mode 100644
index 0000000..e758006
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.dex
new file mode 100644
index 0000000..651586c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.dex
new file mode 100644
index 0000000..24cbb2b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.dex
new file mode 100644
index 0000000..4a3b3c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.dex
new file mode 100644
index 0000000..9c3bb23
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.dex
new file mode 100644
index 0000000..15f1a4d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/RNMBXPackage.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/RNMBXPackage.dex
new file mode 100644
index 0000000..68fc89d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/RNMBXPackage.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEvent.dex
new file mode 100644
index 0000000..388e475
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.dex
new file mode 100644
index 0000000..5ad0ed0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter.dex
new file mode 100644
index 0000000..3589193
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractEventEmitter.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractMapFeature.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractMapFeature.dex
new file mode 100644
index 0000000..1d45763
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/AbstractMapFeature.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/RemovalReason.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/RemovalReason.dex
new file mode 100644
index 0000000..35db42e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/RemovalReason.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.dex
new file mode 100644
index 0000000..c268f35
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.dex
new file mode 100644
index 0000000..bcd3617
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.dex
new file mode 100644
index 0000000..df4d60d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.dex
new file mode 100644
index 0000000..456dafa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.dex
new file mode 100644
index 0000000..a4f66c4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.dex
new file mode 100644
index 0000000..f563ee9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.dex
new file mode 100644
index 0000000..9b34c12
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.dex
new file mode 100644
index 0000000..bf1be46
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.dex
new file mode 100644
index 0000000..5f0ead0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.dex
new file mode 100644
index 0000000..80f6164
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.dex
new file mode 100644
index 0000000..0d69183
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.dex
new file mode 100644
index 0000000..6cc0d06
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.dex
new file mode 100644
index 0000000..43f00b8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.dex
new file mode 100644
index 0000000..172befe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.dex
new file mode 100644
index 0000000..c2627e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.dex
new file mode 100644
index 0000000..1d20b87
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.dex
new file mode 100644
index 0000000..a63ecc4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.dex
new file mode 100644
index 0000000..94905bc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.dex
new file mode 100644
index 0000000..bd29cb1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.dex
new file mode 100644
index 0000000..c52b561
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.dex
new file mode 100644
index 0000000..3c2800a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/Vec2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/Vec2.dex
new file mode 100644
index 0000000..70cc645
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/annotation/Vec2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/BaseEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/BaseEvent.dex
new file mode 100644
index 0000000..e485550
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/BaseEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.dex
new file mode 100644
index 0000000..cbf7c6b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop.dex
new file mode 100644
index 0000000..973a58c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraStop.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.dex
new file mode 100644
index 0000000..3b1d0bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.dex
new file mode 100644
index 0000000..59f0674
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.dex
new file mode 100644
index 0000000..897d1e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.dex
new file mode 100644
index 0000000..c8442f2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.dex
new file mode 100644
index 0000000..baca39a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.dex
new file mode 100644
index 0000000..59f7390
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.dex
new file mode 100644
index 0000000..b0496b0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.dex
new file mode 100644
index 0000000..82c16f8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.dex
new file mode 100644
index 0000000..e520b52
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.dex
new file mode 100644
index 0000000..a75a29f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.dex
new file mode 100644
index 0000000..59fdf14
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.dex
new file mode 100644
index 0000000..5ec2103
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.dex
new file mode 100644
index 0000000..a8a55ef
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.dex
new file mode 100644
index 0000000..c8dac96
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.dex
new file mode 100644
index 0000000..d9051d0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.dex
new file mode 100644
index 0000000..093662c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.dex
new file mode 100644
index 0000000..396bd75
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.dex
new file mode 100644
index 0000000..e164c0b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.dex
new file mode 100644
index 0000000..b955422
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.dex
new file mode 100644
index 0000000..efb9bc6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.dex
new file mode 100644
index 0000000..6e658d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.dex
new file mode 100644
index 0000000..4e37ae2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.dex
new file mode 100644
index 0000000..ca14b71
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.dex
new file mode 100644
index 0000000..a4ecfdc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.dex
new file mode 100644
index 0000000..6b08761
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.dex
new file mode 100644
index 0000000..0a340b5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.dex
new file mode 100644
index 0000000..86d068c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageInfo.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageInfo.dex
new file mode 100644
index 0000000..ffe24a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageInfo.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageManager.dex
new file mode 100644
index 0000000..47714d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/ImageManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImage.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImage.dex
new file mode 100644
index 0000000..8e5011f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImage.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.dex
new file mode 100644
index 0000000..7acbfb3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.dex
new file mode 100644
index 0000000..a9233fe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImage.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImage.dex
new file mode 100644
index 0000000..41e45e5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImage.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.dex
new file mode 100644
index 0000000..cf9330d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.dex
new file mode 100644
index 0000000..23651e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.dex
new file mode 100644
index 0000000..cd6b490
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.dex
new file mode 100644
index 0000000..6f29875
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.dex
new file mode 100644
index 0000000..89e1894
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.dex
new file mode 100644
index 0000000..c1310c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages.dex
new file mode 100644
index 0000000..1c84a0b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImages.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.dex
new file mode 100644
index 0000000..eb9aac8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.dex
new file mode 100644
index 0000000..8e583bc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.dex
new file mode 100644
index 0000000..4ea7792
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.dex
new file mode 100644
index 0000000..fc2bd07
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Resolver.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Resolver.dex
new file mode 100644
index 0000000..6bbebb1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Resolver.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Subscription.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Subscription.dex
new file mode 100644
index 0000000..18fc424
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/images/Subscription.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.dex
new file mode 100644
index 0000000..08f4a9c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode.dex
new file mode 100644
index 0000000..d9dfd4e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/CameraMode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.dex
new file mode 100644
index 0000000..816cac2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager.dex
new file mode 100644
index 0000000..efa3fc1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/LocationComponentManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.dex
new file mode 100644
index 0000000..be98510
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.dex
new file mode 100644
index 0000000..87bae3e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.dex
new file mode 100644
index 0000000..6c7b8b8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.dex
new file mode 100644
index 0000000..ccf7ac2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.dex
new file mode 100644
index 0000000..7126882
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.dex
new file mode 100644
index 0000000..76a5712
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.dex
new file mode 100644
index 0000000..6d23cb1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.dex
new file mode 100644
index 0000000..4c6b4c5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.dex
new file mode 100644
index 0000000..c55acbb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.dex
new file mode 100644
index 0000000..24c25e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.dex
new file mode 100644
index 0000000..9de73e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.dex
new file mode 100644
index 0000000..1368bf0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.dex
new file mode 100644
index 0000000..8814227
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.dex
new file mode 100644
index 0000000..54e2b75
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.dex
new file mode 100644
index 0000000..82e5d80
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.dex
new file mode 100644
index 0000000..489075a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.dex
new file mode 100644
index 0000000..0d261e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RenderMode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RenderMode.dex
new file mode 100644
index 0000000..7a1cf06
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/RenderMode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserLocation.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserLocation.dex
new file mode 100644
index 0000000..71c6408
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserLocation.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserTrackingMode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserTrackingMode.dex
new file mode 100644
index 0000000..71fb7d8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/location/UserTrackingMode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/Cancelable.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/Cancelable.dex
new file mode 100644
index 0000000..b0eb760
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/Cancelable.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/CommandResponse.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/CommandResponse.dex
new file mode 100644
index 0000000..c4573f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/CommandResponse.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.dex
new file mode 100644
index 0000000..e616188
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/MapGestureType.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/MapGestureType.dex
new file mode 100644
index 0000000..7e051fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/MapGestureType.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.dex
new file mode 100644
index 0000000..04d00cd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.dex
new file mode 100644
index 0000000..ef030e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.dex
new file mode 100644
index 0000000..cf24125
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.dex
new file mode 100644
index 0000000..6b2fa45
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.dex
new file mode 100644
index 0000000..d66fe6e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.dex
new file mode 100644
index 0000000..7f93fe1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.dex
new file mode 100644
index 0000000..e9c6a32
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.dex
new file mode 100644
index 0000000..d498db0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.dex
new file mode 100644
index 0000000..54c586e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.dex
new file mode 100644
index 0000000..f027304
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.dex
new file mode 100644
index 0000000..8d0ff7d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.dex
new file mode 100644
index 0000000..0dc2ecb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.dex
new file mode 100644
index 0000000..6b0f896
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.dex
new file mode 100644
index 0000000..369df51
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.dex
new file mode 100644
index 0000000..dc4f7e0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.dex
new file mode 100644
index 0000000..f6305e8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.dex
new file mode 100644
index 0000000..6a0073b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.dex
new file mode 100644
index 0000000..9e146de
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.dex
new file mode 100644
index 0000000..87be39e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.dex
new file mode 100644
index 0000000..1999bef
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.dex
new file mode 100644
index 0000000..bd81ad8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.dex
new file mode 100644
index 0000000..24a2870
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.dex
new file mode 100644
index 0000000..c04f7e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.dex
new file mode 100644
index 0000000..bda8d2f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.dex
new file mode 100644
index 0000000..9270fa2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.dex
new file mode 100644
index 0000000..811cfa1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.dex
new file mode 100644
index 0000000..60172a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.dex
new file mode 100644
index 0000000..66c288f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.dex
new file mode 100644
index 0000000..aaedbdb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.dex
new file mode 100644
index 0000000..a4b44be
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.dex
new file mode 100644
index 0000000..c631a77
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.dex
new file mode 100644
index 0000000..c193ffa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.dex
new file mode 100644
index 0000000..3f3e760
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.dex
new file mode 100644
index 0000000..547a2a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.dex
new file mode 100644
index 0000000..25a5f26
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.dex
new file mode 100644
index 0000000..0f28ae1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.dex
new file mode 100644
index 0000000..309ad27
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.dex
new file mode 100644
index 0000000..db92da6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.dex
new file mode 100644
index 0000000..de1eba6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.dex
new file mode 100644
index 0000000..fbcbd80
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.dex
new file mode 100644
index 0000000..b22cbe1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.dex
new file mode 100644
index 0000000..10b849d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.dex
new file mode 100644
index 0000000..f4e1c75
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.dex
new file mode 100644
index 0000000..8fe29d6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.dex
new file mode 100644
index 0000000..0e0abe6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.dex
new file mode 100644
index 0000000..3f6361d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.dex
new file mode 100644
index 0000000..d9ecdfe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.dex
new file mode 100644
index 0000000..f8931ca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.dex
new file mode 100644
index 0000000..70d818f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.dex
new file mode 100644
index 0000000..4ef843f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.dex
new file mode 100644
index 0000000..74a332b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.dex
new file mode 100644
index 0000000..7f068d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.dex
new file mode 100644
index 0000000..b8d8767
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.dex
new file mode 100644
index 0000000..6d11c8e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.dex
new file mode 100644
index 0000000..180ffe1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.dex
new file mode 100644
index 0000000..22f4772
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.dex
new file mode 100644
index 0000000..b805ec0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.dex
new file mode 100644
index 0000000..9c28312
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.dex
new file mode 100644
index 0000000..79dfc78
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.dex
new file mode 100644
index 0000000..66b57a8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.dex
new file mode 100644
index 0000000..79e1a08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.dex
new file mode 100644
index 0000000..cb67e11
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.dex
new file mode 100644
index 0000000..2cd8b87
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.dex
new file mode 100644
index 0000000..a1455ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.dex
new file mode 100644
index 0000000..71cd0ac
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.dex
new file mode 100644
index 0000000..f81379f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.dex
new file mode 100644
index 0000000..d5196f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.dex
new file mode 100644
index 0000000..cf3aca2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.dex
new file mode 100644
index 0000000..bc1b3c4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.dex
new file mode 100644
index 0000000..4c488fe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.dex
new file mode 100644
index 0000000..feb041e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.dex
new file mode 100644
index 0000000..63cd5f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.dex
new file mode 100644
index 0000000..2f06c6b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.dex
new file mode 100644
index 0000000..75bb51e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.dex
new file mode 100644
index 0000000..09f7af7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.dex
new file mode 100644
index 0000000..44e6fa6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.dex
new file mode 100644
index 0000000..614f4fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.dex
new file mode 100644
index 0000000..73d6531
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.dex
new file mode 100644
index 0000000..939c1ac
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.dex
new file mode 100644
index 0000000..616b091
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.dex
new file mode 100644
index 0000000..7848aaa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.dex
new file mode 100644
index 0000000..62ff97b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.dex
new file mode 100644
index 0000000..ff7a278
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.dex
new file mode 100644
index 0000000..740f037
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.dex
new file mode 100644
index 0000000..323cfdf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.dex
new file mode 100644
index 0000000..a684aa2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.dex
new file mode 100644
index 0000000..f9d1cbd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.dex
new file mode 100644
index 0000000..ccbbd1e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.dex
new file mode 100644
index 0000000..625ac42
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.dex
new file mode 100644
index 0000000..ffaecfd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.dex
new file mode 100644
index 0000000..93a1b7e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.dex
new file mode 100644
index 0000000..2cb8f79
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.dex
new file mode 100644
index 0000000..6d400d0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.dex
new file mode 100644
index 0000000..0937906
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.dex
new file mode 100644
index 0000000..9c9e695
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.dex
new file mode 100644
index 0000000..4f354a2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.dex
new file mode 100644
index 0000000..daf5d3b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.dex
new file mode 100644
index 0000000..f4250fd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.dex
new file mode 100644
index 0000000..f8b723a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.dex
new file mode 100644
index 0000000..bfd4114
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.dex
new file mode 100644
index 0000000..d66a543
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.dex
new file mode 100644
index 0000000..b767d7e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.dex
new file mode 100644
index 0000000..906136d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.dex
new file mode 100644
index 0000000..4816465
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.dex
new file mode 100644
index 0000000..c8775d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.dex
new file mode 100644
index 0000000..d0328a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.dex
new file mode 100644
index 0000000..a5c3da2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.dex
new file mode 100644
index 0000000..7670272
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.dex
new file mode 100644
index 0000000..1196dd9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.dex
new file mode 100644
index 0000000..ed79f6d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.dex
new file mode 100644
index 0000000..2391ef0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.dex
new file mode 100644
index 0000000..6ab617f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.dex
new file mode 100644
index 0000000..56d1a73
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.dex
new file mode 100644
index 0000000..c683de6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.dex
new file mode 100644
index 0000000..2622323
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.dex
new file mode 100644
index 0000000..8a15efa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.dex
new file mode 100644
index 0000000..83c7d0b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.dex
new file mode 100644
index 0000000..5343d7e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.dex
new file mode 100644
index 0000000..bae18d8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.dex
new file mode 100644
index 0000000..4b8dbe1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.dex
new file mode 100644
index 0000000..d3db79b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.dex
new file mode 100644
index 0000000..a84a941
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.dex
new file mode 100644
index 0000000..bd30ef7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.dex
new file mode 100644
index 0000000..e002a14
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.dex
new file mode 100644
index 0000000..fa48c3b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.dex
new file mode 100644
index 0000000..8bc19b3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.dex
new file mode 100644
index 0000000..4bfeb57
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.dex
new file mode 100644
index 0000000..b74ee45
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.dex
new file mode 100644
index 0000000..63f6384
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.dex
new file mode 100644
index 0000000..e444f52
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.dex
new file mode 100644
index 0000000..f01d093
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AbstractEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AbstractEvent.dex
new file mode 100644
index 0000000..8102600
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AbstractEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.dex
new file mode 100644
index 0000000..c8004fe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/CameraChangeEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/CameraChangeEvent.dex
new file mode 100644
index 0000000..565e941
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/CameraChangeEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/EventEmitter.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/EventEmitter.dex
new file mode 100644
index 0000000..1fed979
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/EventEmitter.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/FeatureClickEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/FeatureClickEvent.dex
new file mode 100644
index 0000000..2acb7d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/FeatureClickEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/IEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/IEvent.dex
new file mode 100644
index 0000000..a94cb2e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/IEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/ImageMissingEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/ImageMissingEvent.dex
new file mode 100644
index 0000000..b1f955b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/ImageMissingEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/LocationEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/LocationEvent.dex
new file mode 100644
index 0000000..4038603
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/LocationEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapChangeEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapChangeEvent.dex
new file mode 100644
index 0000000..3d37ea6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapChangeEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapClickEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapClickEvent.dex
new file mode 100644
index 0000000..d13e144
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapClickEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.dex
new file mode 100644
index 0000000..9522ac8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/OfflineEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/OfflineEvent.dex
new file mode 100644
index 0000000..061628c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/OfflineEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.dex
new file mode 100644
index 0000000..2fed09a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.dex
new file mode 100644
index 0000000..75a0915
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeys.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeys.dex
new file mode 100644
index 0000000..cd46187
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeys.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeysKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeysKt.dex
new file mode 100644
index 0000000..534fc3d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventKeysKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventTypes.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventTypes.dex
new file mode 100644
index 0000000..c1e5f1d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/events/constants/EventTypes.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.dex
new file mode 100644
index 0000000..cd933dc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion.dex
new file mode 100644
index 0000000..49b81ab
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.dex
new file mode 100644
index 0000000..83b7167
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.dex
new file mode 100644
index 0000000..063c2f4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager.dex
new file mode 100644
index 0000000..9af67c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationProviderForEngine.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationProviderForEngine.dex
new file mode 100644
index 0000000..88503fb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/LocationProviderForEngine.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/SingletonHolder.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/SingletonHolder.dex
new file mode 100644
index 0000000..6a1873f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/SingletonHolder.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/UserTrackingState.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/UserTrackingState.dex
new file mode 100644
index 0000000..b71562f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/location/UserTrackingState.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.dex
new file mode 100644
index 0000000..b2e038b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/LocationEventThrottle.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/LocationEventThrottle.dex
new file mode 100644
index 0000000..cd1dfee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/LocationEventThrottle.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.dex
new file mode 100644
index 0000000..eeed583
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.dex
new file mode 100644
index 0000000..1d0bfc0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.dex
new file mode 100644
index 0000000..67dc402
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.dex
new file mode 100644
index 0000000..683f614
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.dex
new file mode 100644
index 0000000..b01d637
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.dex
new file mode 100644
index 0000000..ceed033
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.dex
new file mode 100644
index 0000000..2995f78
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging.dex
new file mode 100644
index 0000000..702a17f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXLogging.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.dex
new file mode 100644
index 0000000..6e05791
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule.dex
new file mode 100644
index 0000000..09c5a20
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.dex
new file mode 100644
index 0000000..022dc9c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.dex
new file mode 100644
index 0000000..5641b36
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.dex
new file mode 100644
index 0000000..566e656
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.dex
new file mode 100644
index 0000000..df7f3fd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.dex
new file mode 100644
index 0000000..44690c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.dex
new file mode 100644
index 0000000..0b3e7d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.dex
new file mode 100644
index 0000000..d7f4fe7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.dex
new file mode 100644
index 0000000..518073c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.dex
new file mode 100644
index 0000000..0c4bdb2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.dex
new file mode 100644
index 0000000..5816800
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.dex
new file mode 100644
index 0000000..764b42f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.dex
new file mode 100644
index 0000000..1caa839
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.dex
new file mode 100644
index 0000000..1da421a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.dex
new file mode 100644
index 0000000..d632ce2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPack.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPack.dex
new file mode 100644
index 0000000..41afeb1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPack.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPackState.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPackState.dex
new file mode 100644
index 0000000..833223c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/TileRegionPackState.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/ZoomRange.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/ZoomRange.dex
new file mode 100644
index 0000000..c74e1ce
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/modules/ZoomRange.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.dex
new file mode 100644
index 0000000..7c0e6ca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.dex
new file mode 100644
index 0000000..302d6f1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.dex
new file mode 100644
index 0000000..2bf2342
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.dex
new file mode 100644
index 0000000..bbe46c5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.dex
new file mode 100644
index 0000000..37c88be
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.dex
new file mode 100644
index 0000000..76e34ae
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.dex
new file mode 100644
index 0000000..d2b05b8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.dex
new file mode 100644
index 0000000..b0b0d9c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.dex
new file mode 100644
index 0000000..de1640b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.dex
new file mode 100644
index 0000000..91c7f8e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.dex
new file mode 100644
index 0000000..e0f904f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.dex
new file mode 100644
index 0000000..c2b69e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.dex
new file mode 100644
index 0000000..e7e7699
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.dex
new file mode 100644
index 0000000..9273af0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.dex
new file mode 100644
index 0000000..34cb4d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.dex
new file mode 100644
index 0000000..392588c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.dex
new file mode 100644
index 0000000..023003d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils.dex
new file mode 100644
index 0000000..a3730aa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/BitmapUtils.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils$1.dex
new file mode 100644
index 0000000..3faba0c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils.dex
new file mode 100644
index 0000000..e44f978
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ConvertUtils.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/CustomPropUpdater.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/CustomPropUpdater.dex
new file mode 100644
index 0000000..63f4fd1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/CustomPropUpdater.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.dex
new file mode 100644
index 0000000..0ee65ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.dex
new file mode 100644
index 0000000..b8d3788
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.dex
new file mode 100644
index 0000000..5aac60d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.dex
new file mode 100644
index 0000000..4d049b7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.dex
new file mode 100644
index 0000000..5fa14af
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.dex
new file mode 100644
index 0000000..25ae73c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.dex
new file mode 100644
index 0000000..dee09a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.dex
new file mode 100644
index 0000000..033f715
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.dex
new file mode 100644
index 0000000..dc73d66
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadedImage.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadedImage.dex
new file mode 100644
index 0000000..a54288a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/DownloadedImage.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ExpressionParser.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ExpressionParser.dex
new file mode 100644
index 0000000..9588537
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ExpressionParser.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/GeoJSONUtils.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/GeoJSONUtils.dex
new file mode 100644
index 0000000..2e2b894
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/GeoJSONUtils.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ImageEntry.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ImageEntry.dex
new file mode 100644
index 0000000..ffca08e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ImageEntry.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLng.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLng.dex
new file mode 100644
index 0000000..1a39367
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLng.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.dex
new file mode 100644
index 0000000..6fda430
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds.dex
new file mode 100644
index 0000000..72ea2f6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngBounds.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngQuad.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngQuad.dex
new file mode 100644
index 0000000..807a56f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/LatLngQuad.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.dex
new file mode 100644
index 0000000..36db21a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$logger$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$logger$1.dex
new file mode 100644
index 0000000..975dbf7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger$logger$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger.dex
new file mode 100644
index 0000000..348ee87
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/Logger.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyChanges.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyChanges.dex
new file mode 100644
index 0000000..09fb69e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyChanges.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdater.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdater.dex
new file mode 100644
index 0000000..a2adf77
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdater.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.dex
new file mode 100644
index 0000000..485231c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.dex
new file mode 100644
index 0000000..b4262bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue.dex
new file mode 100644
index 0000000..6563a15
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ReadableMapToValue.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ResourceUtils.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ResourceUtils.dex
new file mode 100644
index 0000000..43921bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ResourceUtils.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolver.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolver.dex
new file mode 100644
index 0000000..5c96bfb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolver.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.dex
new file mode 100644
index 0000000..fe35752
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagWaiter.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagWaiter.dex
new file mode 100644
index 0000000..b47bc9b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/ViewTagWaiter.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.dex
new file mode 100644
index 0000000..47029c0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.dex
new file mode 100644
index 0000000..530736f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.dex
new file mode 100644
index 0000000..06d7b0e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.dex
new file mode 100644
index 0000000..6266860
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.dex
new file mode 100644
index 0000000..cbdcf88
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.dex
new file mode 100644
index 0000000..b14e169
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.dex
new file mode 100644
index 0000000..682fe95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/PointKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/PointKt.dex
new file mode 100644
index 0000000..81def27
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/PointKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.dex
new file mode 100644
index 0000000..2582d43
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.dex
new file mode 100644
index 0000000..7096d0b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.dex
new file mode 100644
index 0000000..43e4ad3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.dex
new file mode 100644
index 0000000..dc2205a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ValueKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ValueKt.dex
new file mode 100644
index 0000000..c64c492
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/utils/extensions/ValueKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/Cancelable.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/Cancelable.dex
new file mode 100644
index 0000000..eefd312
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/Cancelable.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.dex
new file mode 100644
index 0000000..2f1e8f2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.dex
new file mode 100644
index 0000000..843321a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/event/EventKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/event/EventKt.dex
new file mode 100644
index 0000000..8f67129
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/event/EventKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.dex
new file mode 100644
index 0000000..c3d4fbe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.dex
new file mode 100644
index 0000000..67dc23d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.dex
new file mode 100644
index 0000000..a058cd4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.dex
new file mode 100644
index 0000000..3f4a325
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/ImageKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/ImageKt.dex
new file mode 100644
index 0000000..c35d613
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/image/ImageKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.dex
new file mode 100644
index 0000000..8706cfa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/light/LightKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/light/LightKt.dex
new file mode 100644
index 0000000..8d2bf08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/light/LightKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/location/LocationKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/location/LocationKt.dex
new file mode 100644
index 0000000..f9e0d68
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/location/LocationKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.dex
new file mode 100644
index 0000000..7f2f79f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.dex
new file mode 100644
index 0000000..d5ba624
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.dex
new file mode 100644
index 0000000..d9acd48
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.dex
new file mode 100644
index 0000000..f2d45b8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.dex
new file mode 100644
index 0000000..2f2a1c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.dex
new file mode 100644
index 0000000..adff49a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.dex
new file mode 100644
index 0000000..2b0cc10
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.dex
new file mode 100644
index 0000000..315969e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.dex
new file mode 100644
index 0000000..74830e6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.dex
new file mode 100644
index 0000000..5df4196
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/style/StyleKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/style/StyleKt.dex
new file mode 100644
index 0000000..097b110
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/style/StyleKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.dex b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.dex
new file mode 100644
index 0000000..c27ca53
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.dex differ
diff --git a/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin
new file mode 100644
index 0000000..d6d7d65
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/.transforms/c1b607ea0c2ba3c66e3ddc5e9a5d4044/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ
diff --git a/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java
new file mode 100644
index 0000000..6be09da
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/generated/source/buildConfig/debug/com/rnmapbox/rnmbx/BuildConfig.java
@@ -0,0 +1,12 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.rnmapbox.rnmbx;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String LIBRARY_PACKAGE_NAME = "com.rnmapbox.rnmbx";
+ public static final String BUILD_TYPE = "debug";
+ // Field from default config.
+ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = false;
+}
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
new file mode 100644
index 0000000..c8865b5
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
new file mode 100644
index 0000000..545af46
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.rnmapbox.rnmbx",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
new file mode 100644
index 0000000..1211b1e
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties
@@ -0,0 +1,6 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
+coreLibraryDesugaringEnabled=false
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar
new file mode 100644
index 0000000..2fdd449
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
new file mode 100644
index 0000000..5788a59
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
new file mode 100644
index 0000000..e6bb791
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
@@ -0,0 +1,8 @@
+int drawable empty 0x0
+int drawable empty_drawable 0x0
+int drawable red_marker 0x0
+int id annotation_img 0x0
+int id annotation_layout 0x0
+int id annotation_view_container 0x0
+int layout annotation 0x0
+int string app_name 0x0
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat
new file mode 100644
index 0000000..f72c33c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable-xxhdpi-v4_red_marker.png.flat differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat
new file mode 100644
index 0000000..851b125
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty.xml.flat differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat
new file mode 100644
index 0000000..f078be6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_empty_drawable.png.flat differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat
new file mode 100644
index 0000000..77f8d0d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/layout_annotation.xml.flat differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
new file mode 100644
index 0000000..21160aa
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -0,0 +1,5 @@
+#Thu Feb 13 17:37:45 BRT 2025
+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable-xxhdpi/red_marker.png=/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png
+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty.xml=/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml
+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/drawable/empty_drawable.png=/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png
+com.rnmapbox.rnmbx.rnmapbox_maps-main-6\:/layout/annotation.xml=/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
new file mode 100644
index 0000000..9c03766
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,4 @@
+
+
+ RNMBX
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
new file mode 100644
index 0000000..0f83cbe
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -0,0 +1,2 @@
+
+RNMBX
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 0000000..1486364
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..4f8c21a
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml
new file mode 100644
index 0000000..e09119e
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/incremental/packageDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module
new file mode 100644
index 0000000..0964712
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/rnmapbox_maps_debug.kotlin_module differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class
new file mode 100644
index 0000000..8e13965
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class
new file mode 100644
index 0000000..9da153c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class
new file mode 100644
index 0000000..34ae8a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class
new file mode 100644
index 0000000..1ddb4b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class
new file mode 100644
index 0000000..cecd9e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class
new file mode 100644
index 0000000..0306f7e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class
new file mode 100644
index 0000000..8a701e5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class
new file mode 100644
index 0000000..40c91a2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class
new file mode 100644
index 0000000..697a8c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class
new file mode 100644
index 0000000..f300f36
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class
new file mode 100644
index 0000000..f8b36e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class
new file mode 100644
index 0000000..764e78f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class
new file mode 100644
index 0000000..1317113
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class
new file mode 100644
index 0000000..31053bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class
new file mode 100644
index 0000000..d2a5254
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class
new file mode 100644
index 0000000..aa2f866
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class
new file mode 100644
index 0000000..2b5c745
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class
new file mode 100644
index 0000000..bb53473
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class
new file mode 100644
index 0000000..4dc6afd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class
new file mode 100644
index 0000000..b6e15cf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class
new file mode 100644
index 0000000..dbb08a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class
new file mode 100644
index 0000000..92e1840
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class
new file mode 100644
index 0000000..f0dee21
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class
new file mode 100644
index 0000000..b3f8dc1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class
new file mode 100644
index 0000000..add7d5d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class
new file mode 100644
index 0000000..0bf5b39
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class
new file mode 100644
index 0000000..4ec0d68
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class
new file mode 100644
index 0000000..2a51cb6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class
new file mode 100644
index 0000000..b9310d9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class
new file mode 100644
index 0000000..b2c7cf5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class
new file mode 100644
index 0000000..835a2a5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class
new file mode 100644
index 0000000..0cf3a88
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class
new file mode 100644
index 0000000..d75fcfe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class
new file mode 100644
index 0000000..9022f91
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class
new file mode 100644
index 0000000..fa03ace
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class
new file mode 100644
index 0000000..3ce8e53
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class
new file mode 100644
index 0000000..6d98e62
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class
new file mode 100644
index 0000000..8c114bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class
new file mode 100644
index 0000000..8763ab7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class
new file mode 100644
index 0000000..1d4f8fb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class
new file mode 100644
index 0000000..4996fca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class
new file mode 100644
index 0000000..62b96c6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class
new file mode 100644
index 0000000..8d99e86
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class
new file mode 100644
index 0000000..c29a25f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class
new file mode 100644
index 0000000..63acf7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class
new file mode 100644
index 0000000..7bec890
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class
new file mode 100644
index 0000000..0409abf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class
new file mode 100644
index 0000000..1937ecb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class
new file mode 100644
index 0000000..65b76a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class
new file mode 100644
index 0000000..e6af2cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class
new file mode 100644
index 0000000..36331ca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class
new file mode 100644
index 0000000..f2b26d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class
new file mode 100644
index 0000000..4d515ae
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class
new file mode 100644
index 0000000..2bd24d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class
new file mode 100644
index 0000000..3298856
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class
new file mode 100644
index 0000000..0a8bb1b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class
new file mode 100644
index 0000000..3cb3554
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class
new file mode 100644
index 0000000..ca1c467
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class
new file mode 100644
index 0000000..24d3405
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class
new file mode 100644
index 0000000..8e683fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class
new file mode 100644
index 0000000..402bb11
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class
new file mode 100644
index 0000000..3a77e26
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class
new file mode 100644
index 0000000..9ce6ad2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/BuildConfig.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class
new file mode 100644
index 0000000..6dbadf4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class
new file mode 100644
index 0000000..233ec2e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class
new file mode 100644
index 0000000..191b7a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class
new file mode 100644
index 0000000..d685302
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class
new file mode 100644
index 0000000..43a73b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class
new file mode 100644
index 0000000..7835001
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class
new file mode 100644
index 0000000..0790f82
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class
new file mode 100644
index 0000000..9bc7b1e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class
new file mode 100644
index 0000000..f4ff13c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class
new file mode 100644
index 0000000..dc6840e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class
new file mode 100644
index 0000000..c6a87ed
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class
new file mode 100644
index 0000000..fcf07a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class
new file mode 100644
index 0000000..aa51ee0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/CameraMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class
new file mode 100644
index 0000000..2c464db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/location/UserLocation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class
new file mode 100644
index 0000000..ef61e65
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class
new file mode 100644
index 0000000..7cc9e13
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class
new file mode 100644
index 0000000..69afe95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/EventEmitter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class
new file mode 100644
index 0000000..3285aa5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/FeatureClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class
new file mode 100644
index 0000000..59dfafa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/ImageMissingEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class
new file mode 100644
index 0000000..b3a5edb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/MapClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class
new file mode 100644
index 0000000..9f3d2b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/OfflineEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class
new file mode 100644
index 0000000..ab9dd46
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class
new file mode 100644
index 0000000..29ec60a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class
new file mode 100644
index 0000000..65ed6f1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/location/UserTrackingState.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class
new file mode 100644
index 0000000..fb9b891
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class
new file mode 100644
index 0000000..4df9915
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ConvertUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class
new file mode 100644
index 0000000..8d62fee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ExpressionParser.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class
new file mode 100644
index 0000000..a0141ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLng.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class
new file mode 100644
index 0000000..5933243
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/LatLngQuad.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class
new file mode 100644
index 0000000..e2c1949
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class
new file mode 100644
index 0000000..63e3cc9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class
new file mode 100644
index 0000000..4e39312
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/rnmapbox/rnmbx/utils/ResourceUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
new file mode 100644
index 0000000..826dbbd
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt
@@ -0,0 +1,10 @@
+R_DEF: Internal format may change without notice
+local
+drawable empty
+drawable empty_drawable
+drawable red_marker
+id annotation_img
+id annotation_layout
+id annotation_view_container
+layout annotation
+string app_name
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
new file mode 100644
index 0000000..6a7cee9
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt
@@ -0,0 +1,17 @@
+1
+2
+4
+5
+6
+7
+7-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67
+7-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64
+8
+8-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80
+8-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78
+9
+9-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78
+9-->/Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76
+10
+11
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
new file mode 100644
index 0000000..c8865b5
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
new file mode 100644
index 0000000..08f4ebe
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt
@@ -0,0 +1 @@
+0 Warning/Error
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png
new file mode 100644
index 0000000..be782e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable-xxhdpi-v4/red_marker.png differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml
new file mode 100644
index 0000000..1f83bff
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png
new file mode 100644
index 0000000..9da19ea
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/empty_drawable.png differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml
new file mode 100644
index 0000000..4994bd0
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/layout/annotation.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml
new file mode 100644
index 0000000..9c03766
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml
@@ -0,0 +1,4 @@
+
+
+ RNMBX
+
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnmapbox_maps_debug.kotlin_module
new file mode 100644
index 0000000..0964712
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/rnmapbox_maps_debug.kotlin_module differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class
new file mode 100644
index 0000000..8e13965
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class
new file mode 100644
index 0000000..9da153c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class
new file mode 100644
index 0000000..34ae8a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class
new file mode 100644
index 0000000..1ddb4b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class
new file mode 100644
index 0000000..cecd9e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class
new file mode 100644
index 0000000..0306f7e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCalloutManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class
new file mode 100644
index 0000000..8a701e5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class
new file mode 100644
index 0000000..40c91a2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCameraManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class
new file mode 100644
index 0000000..697a8c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class
new file mode 100644
index 0000000..f300f36
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class
new file mode 100644
index 0000000..f8b36e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class
new file mode 100644
index 0000000..764e78f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class
new file mode 100644
index 0000000..1317113
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class
new file mode 100644
index 0000000..31053bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class
new file mode 100644
index 0000000..d2a5254
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class
new file mode 100644
index 0000000..aa2f866
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXFillLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class
new file mode 100644
index 0000000..2b5c745
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class
new file mode 100644
index 0000000..bb53473
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class
new file mode 100644
index 0000000..4dc6afd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class
new file mode 100644
index 0000000..b6e15cf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class
new file mode 100644
index 0000000..dbb08a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class
new file mode 100644
index 0000000..92e1840
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImageSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class
new file mode 100644
index 0000000..f0dee21
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class
new file mode 100644
index 0000000..b3f8dc1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXImagesManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class
new file mode 100644
index 0000000..add7d5d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class
new file mode 100644
index 0000000..0bf5b39
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLightManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class
new file mode 100644
index 0000000..4ec0d68
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class
new file mode 100644
index 0000000..2a51cb6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXLineLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class
new file mode 100644
index 0000000..b9310d9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class
new file mode 100644
index 0000000..b2c7cf5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMapViewManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class
new file mode 100644
index 0000000..835a2a5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class
new file mode 100644
index 0000000..0cf3a88
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class
new file mode 100644
index 0000000..d75fcfe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class
new file mode 100644
index 0000000..9022f91
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class
new file mode 100644
index 0000000..fa03ace
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class
new file mode 100644
index 0000000..3ce8e53
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class
new file mode 100644
index 0000000..6d98e62
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class
new file mode 100644
index 0000000..8c114bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXModelsManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class
new file mode 100644
index 0000000..8763ab7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class
new file mode 100644
index 0000000..1d4f8fb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class
new file mode 100644
index 0000000..4996fca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class
new file mode 100644
index 0000000..62b96c6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class
new file mode 100644
index 0000000..8d99e86
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class
new file mode 100644
index 0000000..c29a25f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class
new file mode 100644
index 0000000..63acf7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class
new file mode 100644
index 0000000..7bec890
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class
new file mode 100644
index 0000000..0409abf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class
new file mode 100644
index 0000000..1937ecb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class
new file mode 100644
index 0000000..65b76a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class
new file mode 100644
index 0000000..e6af2cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class
new file mode 100644
index 0000000..36331ca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class
new file mode 100644
index 0000000..f2b26d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class
new file mode 100644
index 0000000..4d515ae
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class
new file mode 100644
index 0000000..2bd24d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXStyleImportManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class
new file mode 100644
index 0000000..3298856
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class
new file mode 100644
index 0000000..0a8bb1b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class
new file mode 100644
index 0000000..3cb3554
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class
new file mode 100644
index 0000000..ca1c467
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXTerrainManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class
new file mode 100644
index 0000000..24d3405
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class
new file mode 100644
index 0000000..8e683fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class
new file mode 100644
index 0000000..402bb11
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class
new file mode 100644
index 0000000..3a77e26
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/RNMBXViewportManagerInterface.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/BuildConfig.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/BuildConfig.class
new file mode 100644
index 0000000..9ce6ad2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/BuildConfig.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class
new file mode 100644
index 0000000..6dbadf4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeMapViewModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class
new file mode 100644
index 0000000..233ec2e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXCameraModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class
new file mode 100644
index 0000000..191b7a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXChangeLineOffsetsShapeAnimatorModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class
new file mode 100644
index 0000000..d685302
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXImageModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class
new file mode 100644
index 0000000..43a73b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXMovePointShapeAnimatorModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class
new file mode 100644
index 0000000..7835001
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXPointAnnotationModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class
new file mode 100644
index 0000000..0790f82
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXShapeSourceModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class
new file mode 100644
index 0000000..9bc7b1e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXTileStoreModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class
new file mode 100644
index 0000000..f4ff13c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/NativeRNMBXViewportModuleSpec.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/RNMBXPackage.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/RNMBXPackage.class
new file mode 100644
index 0000000..74e4c4d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/RNMBXPackage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEvent.class
new file mode 100644
index 0000000..e664ef8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class
new file mode 100644
index 0000000..e19cff6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class
new file mode 100644
index 0000000..06a9995
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class
new file mode 100644
index 0000000..b361652
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/RemovalReason.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/RemovalReason.class
new file mode 100644
index 0000000..3070161
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/RemovalReason.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class
new file mode 100644
index 0000000..928ec66
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class
new file mode 100644
index 0000000..b3e354e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class
new file mode 100644
index 0000000..39dbcb2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class
new file mode 100644
index 0000000..95887a0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class
new file mode 100644
index 0000000..3249ceb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class
new file mode 100644
index 0000000..5b5df10
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class
new file mode 100644
index 0000000..d6033cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class
new file mode 100644
index 0000000..12e82d8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class
new file mode 100644
index 0000000..d18fcf7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class
new file mode 100644
index 0000000..453a5d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class
new file mode 100644
index 0000000..4c52068
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class
new file mode 100644
index 0000000..4daa769
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class
new file mode 100644
index 0000000..36e44e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class
new file mode 100644
index 0000000..f1143ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class
new file mode 100644
index 0000000..a6e6f1a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class
new file mode 100644
index 0000000..1c2c5db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class
new file mode 100644
index 0000000..ff361d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class
new file mode 100644
index 0000000..eb13c95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class
new file mode 100644
index 0000000..07c00e0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class
new file mode 100644
index 0000000..5ea24cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class
new file mode 100644
index 0000000..8b23623
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/Vec2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/Vec2.class
new file mode 100644
index 0000000..2563afc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/annotation/Vec2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class
new file mode 100644
index 0000000..494d1bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class
new file mode 100644
index 0000000..bfd7d40
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop.class
new file mode 100644
index 0000000..c3b2728
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraStop.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class
new file mode 100644
index 0000000..41f27c7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class
new file mode 100644
index 0000000..f0d3b41
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class
new file mode 100644
index 0000000..32d3b8b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class
new file mode 100644
index 0000000..dba4251
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class
new file mode 100644
index 0000000..ee9f21e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class
new file mode 100644
index 0000000..a8ad98a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class
new file mode 100644
index 0000000..e0da102
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class
new file mode 100644
index 0000000..972177b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class
new file mode 100644
index 0000000..7c1c0e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class
new file mode 100644
index 0000000..cec39df
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class
new file mode 100644
index 0000000..7196fcb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class
new file mode 100644
index 0000000..7394822
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class
new file mode 100644
index 0000000..0d48aa9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class
new file mode 100644
index 0000000..5d8f296
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class
new file mode 100644
index 0000000..58ce7e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class
new file mode 100644
index 0000000..1d0cb4d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class
new file mode 100644
index 0000000..e6d3c4f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class
new file mode 100644
index 0000000..6821c94
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class
new file mode 100644
index 0000000..7a889c0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class
new file mode 100644
index 0000000..09d6697
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class
new file mode 100644
index 0000000..3ab7fdb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class
new file mode 100644
index 0000000..d5457d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class
new file mode 100644
index 0000000..4529ba2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class
new file mode 100644
index 0000000..bebc741
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class
new file mode 100644
index 0000000..1a144a2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class
new file mode 100644
index 0000000..dc6840e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode$Mode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class
new file mode 100644
index 0000000..c6a87ed
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/camera/constants/CameraMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageInfo.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageInfo.class
new file mode 100644
index 0000000..dfea4b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageInfo.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageManager.class
new file mode 100644
index 0000000..131be29
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/ImageManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImage.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImage.class
new file mode 100644
index 0000000..06a6dff
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class
new file mode 100644
index 0000000..b23fe63
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class
new file mode 100644
index 0000000..50d7675
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class
new file mode 100644
index 0000000..f524a7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class
new file mode 100644
index 0000000..d3d8396
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class
new file mode 100644
index 0000000..2bf7380
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class
new file mode 100644
index 0000000..e88d4a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class
new file mode 100644
index 0000000..073c794
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class
new file mode 100644
index 0000000..68acb5c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class
new file mode 100644
index 0000000..dd30dc0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class
new file mode 100644
index 0000000..947de25
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class
new file mode 100644
index 0000000..8a62cd2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class
new file mode 100644
index 0000000..988a64d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class
new file mode 100644
index 0000000..0053d48
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class
new file mode 100644
index 0000000..11ce507
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Resolver.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Resolver.class
new file mode 100644
index 0000000..c753a08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Resolver.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Subscription.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Subscription.class
new file mode 100644
index 0000000..a5ddb0e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/images/Subscription.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class
new file mode 100644
index 0000000..fcf07a7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode$Mode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode.class
new file mode 100644
index 0000000..aa51ee0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/CameraMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class
new file mode 100644
index 0000000..8016118
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class
new file mode 100644
index 0000000..6afc32d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class
new file mode 100644
index 0000000..9a44805
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class
new file mode 100644
index 0000000..71fd4d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class
new file mode 100644
index 0000000..d77720a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class
new file mode 100644
index 0000000..2f0d8b0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class
new file mode 100644
index 0000000..6f4bfd5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class
new file mode 100644
index 0000000..3b6c8c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class
new file mode 100644
index 0000000..d581670
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class
new file mode 100644
index 0000000..c3cd7e0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class
new file mode 100644
index 0000000..d384993
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class
new file mode 100644
index 0000000..3844cb3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class
new file mode 100644
index 0000000..436b4f2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class
new file mode 100644
index 0000000..9962166
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class
new file mode 100644
index 0000000..87e61d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class
new file mode 100644
index 0000000..a05be2f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class
new file mode 100644
index 0000000..d176d27
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class
new file mode 100644
index 0000000..c7d5f6d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class
new file mode 100644
index 0000000..250f05f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RenderMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RenderMode.class
new file mode 100644
index 0000000..e539c9a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/RenderMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserLocation.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserLocation.class
new file mode 100644
index 0000000..2c464db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserLocation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class
new file mode 100644
index 0000000..b6080a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class
new file mode 100644
index 0000000..eb78bde
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class
new file mode 100644
index 0000000..68b6fc2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class
new file mode 100644
index 0000000..48efc17
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class
new file mode 100644
index 0000000..c04fea6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class
new file mode 100644
index 0000000..69c7541
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class
new file mode 100644
index 0000000..1f94467
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class
new file mode 100644
index 0000000..73eefbe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class
new file mode 100644
index 0000000..ef61e65
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OnMapReadyCallback.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class
new file mode 100644
index 0000000..aa85d44
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class
new file mode 100644
index 0000000..f665ef4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class
new file mode 100644
index 0000000..b73b352
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class
new file mode 100644
index 0000000..a71fd53
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class
new file mode 100644
index 0000000..4d8599d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class
new file mode 100644
index 0000000..a9d9590
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class
new file mode 100644
index 0000000..b01df95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class
new file mode 100644
index 0000000..b191b5f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class
new file mode 100644
index 0000000..1941ee7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class
new file mode 100644
index 0000000..5d65efe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class
new file mode 100644
index 0000000..5ff8975
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class
new file mode 100644
index 0000000..2fb7b00
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class
new file mode 100644
index 0000000..20081fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class
new file mode 100644
index 0000000..acc3948
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class
new file mode 100644
index 0000000..deca726
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class
new file mode 100644
index 0000000..59cb9c2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class
new file mode 100644
index 0000000..369eba7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class
new file mode 100644
index 0000000..e24db7d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class
new file mode 100644
index 0000000..bc8df4f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class
new file mode 100644
index 0000000..ee1cbb2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class
new file mode 100644
index 0000000..572aa08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class
new file mode 100644
index 0000000..52a799c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class
new file mode 100644
index 0000000..51305c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class
new file mode 100644
index 0000000..20dce90
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class
new file mode 100644
index 0000000..c76733b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class
new file mode 100644
index 0000000..a9aca6a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class
new file mode 100644
index 0000000..54529bc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class
new file mode 100644
index 0000000..66f350e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class
new file mode 100644
index 0000000..c574625
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class
new file mode 100644
index 0000000..6870543
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class
new file mode 100644
index 0000000..abf652c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class
new file mode 100644
index 0000000..3e4b6b1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class
new file mode 100644
index 0000000..45b414c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class
new file mode 100644
index 0000000..ea858f7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class
new file mode 100644
index 0000000..e6f6579
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class
new file mode 100644
index 0000000..1f56551
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class
new file mode 100644
index 0000000..4dc8d3d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class
new file mode 100644
index 0000000..8de4e41
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class
new file mode 100644
index 0000000..3ce3729
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class
new file mode 100644
index 0000000..322876f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class
new file mode 100644
index 0000000..4c22015
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class
new file mode 100644
index 0000000..ff90d7b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class
new file mode 100644
index 0000000..7ab5d60
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class
new file mode 100644
index 0000000..b3a81dc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class
new file mode 100644
index 0000000..908464c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class
new file mode 100644
index 0000000..1de3ca5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class
new file mode 100644
index 0000000..9f1def1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class
new file mode 100644
index 0000000..210fed9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class
new file mode 100644
index 0000000..f12809f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class
new file mode 100644
index 0000000..4084180
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class
new file mode 100644
index 0000000..2e2db68
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class
new file mode 100644
index 0000000..e92f7c5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class
new file mode 100644
index 0000000..668aa91
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class
new file mode 100644
index 0000000..e13c7d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class
new file mode 100644
index 0000000..15b33ec
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class
new file mode 100644
index 0000000..b3d4e19
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class
new file mode 100644
index 0000000..657bdef
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class
new file mode 100644
index 0000000..99f38f0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class
new file mode 100644
index 0000000..b2e1a14
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class
new file mode 100644
index 0000000..5b01d3b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class
new file mode 100644
index 0000000..9824088
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class
new file mode 100644
index 0000000..f357b9b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class
new file mode 100644
index 0000000..c4c613f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class
new file mode 100644
index 0000000..d0c198c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class
new file mode 100644
index 0000000..8e2e020
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class
new file mode 100644
index 0000000..e39c8f4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class
new file mode 100644
index 0000000..7ad4879
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class
new file mode 100644
index 0000000..488113d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class
new file mode 100644
index 0000000..9a1afc5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class
new file mode 100644
index 0000000..d47136f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class
new file mode 100644
index 0000000..fa83b04
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class
new file mode 100644
index 0000000..0f7fd4e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class
new file mode 100644
index 0000000..f140ab5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class
new file mode 100644
index 0000000..8153602
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class
new file mode 100644
index 0000000..8266fac
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class
new file mode 100644
index 0000000..a904064
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class
new file mode 100644
index 0000000..bde85d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class
new file mode 100644
index 0000000..6f135ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class
new file mode 100644
index 0000000..7df71f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class
new file mode 100644
index 0000000..4a9d8d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class
new file mode 100644
index 0000000..e064d9f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class
new file mode 100644
index 0000000..f87be8f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class
new file mode 100644
index 0000000..6f46b86
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class
new file mode 100644
index 0000000..5391b6b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class
new file mode 100644
index 0000000..09fe99b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class
new file mode 100644
index 0000000..b5a82b7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class
new file mode 100644
index 0000000..c5605ed
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class
new file mode 100644
index 0000000..d23f9a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class
new file mode 100644
index 0000000..b42ebf6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class
new file mode 100644
index 0000000..a728fd3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class
new file mode 100644
index 0000000..0429d1c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class
new file mode 100644
index 0000000..7627d6a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class
new file mode 100644
index 0000000..019ba05
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class
new file mode 100644
index 0000000..93674e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class
new file mode 100644
index 0000000..205d4e3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class
new file mode 100644
index 0000000..5f96909
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class
new file mode 100644
index 0000000..f4ab75c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class
new file mode 100644
index 0000000..db259d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class
new file mode 100644
index 0000000..3a7c36b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class
new file mode 100644
index 0000000..1d93a54
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class
new file mode 100644
index 0000000..9513260
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class
new file mode 100644
index 0000000..baf5be7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class
new file mode 100644
index 0000000..82024e8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class
new file mode 100644
index 0000000..c89b33d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class
new file mode 100644
index 0000000..983090e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class
new file mode 100644
index 0000000..665574b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class
new file mode 100644
index 0000000..9333ac3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class
new file mode 100644
index 0000000..c30fac7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class
new file mode 100644
index 0000000..f4fdef8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class
new file mode 100644
index 0000000..eee12e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class
new file mode 100644
index 0000000..9cbb843
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class
new file mode 100644
index 0000000..2950c8c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class
new file mode 100644
index 0000000..6d23ed9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class
new file mode 100644
index 0000000..30f376b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class
new file mode 100644
index 0000000..f6be87d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class
new file mode 100644
index 0000000..652fa64
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class
new file mode 100644
index 0000000..9cca8bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class
new file mode 100644
index 0000000..66304a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class
new file mode 100644
index 0000000..faa0305
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class
new file mode 100644
index 0000000..da54973
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class
new file mode 100644
index 0000000..b498da3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class
new file mode 100644
index 0000000..49a3294
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class
new file mode 100644
index 0000000..bbb3403
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class
new file mode 100644
index 0000000..42ab4a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class
new file mode 100644
index 0000000..9d2283b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class
new file mode 100644
index 0000000..b15f81e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class
new file mode 100644
index 0000000..56a746a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AbstractEvent.class
new file mode 100644
index 0000000..3852b7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AbstractEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class
new file mode 100644
index 0000000..7cc9e13
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/AndroidCallbackEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class
new file mode 100644
index 0000000..6c8fddc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/EventEmitter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/EventEmitter.class
new file mode 100644
index 0000000..69afe95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/EventEmitter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/FeatureClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/FeatureClickEvent.class
new file mode 100644
index 0000000..3285aa5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/FeatureClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/IEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/IEvent.class
new file mode 100644
index 0000000..4e708fe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/IEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/ImageMissingEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/ImageMissingEvent.class
new file mode 100644
index 0000000..59dfafa
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/ImageMissingEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/LocationEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/LocationEvent.class
new file mode 100644
index 0000000..46a2abd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/LocationEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapChangeEvent.class
new file mode 100644
index 0000000..7b7281c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapChangeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapClickEvent.class
new file mode 100644
index 0000000..b3a5edb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class
new file mode 100644
index 0000000..1111ba1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/OfflineEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/OfflineEvent.class
new file mode 100644
index 0000000..9f3d2b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/OfflineEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class
new file mode 100644
index 0000000..ab9dd46
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationClickEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class
new file mode 100644
index 0000000..29ec60a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/PointAnnotationDragEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeys.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeys.class
new file mode 100644
index 0000000..36f6b2d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeys.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class
new file mode 100644
index 0000000..d2748bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventTypes.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventTypes.class
new file mode 100644
index 0000000..987f8f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/events/constants/EventTypes.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class
new file mode 100644
index 0000000..323f83a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class
new file mode 100644
index 0000000..ed5de63
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class
new file mode 100644
index 0000000..edf1123
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class
new file mode 100644
index 0000000..34dd6e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager.class
new file mode 100644
index 0000000..b5f8c56
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class
new file mode 100644
index 0000000..8c6d69f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/SingletonHolder.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/SingletonHolder.class
new file mode 100644
index 0000000..53fccf7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/SingletonHolder.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/UserTrackingState.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/UserTrackingState.class
new file mode 100644
index 0000000..65ed6f1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/location/UserTrackingState.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class
new file mode 100644
index 0000000..b655964
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class
new file mode 100644
index 0000000..df219bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class
new file mode 100644
index 0000000..a760f62
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class
new file mode 100644
index 0000000..440d2f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class
new file mode 100644
index 0000000..fe31ff8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class
new file mode 100644
index 0000000..5aa0a3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class
new file mode 100644
index 0000000..6bf61d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class
new file mode 100644
index 0000000..701f7a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class
new file mode 100644
index 0000000..e7b57ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class
new file mode 100644
index 0000000..0685dad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class
new file mode 100644
index 0000000..c7f8291
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule.class
new file mode 100644
index 0000000..cdd1032
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class
new file mode 100644
index 0000000..6ce7949
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class
new file mode 100644
index 0000000..097b021
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class
new file mode 100644
index 0000000..96d908c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class
new file mode 100644
index 0000000..0db9e09
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class
new file mode 100644
index 0000000..261e6e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class
new file mode 100644
index 0000000..d020cfd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class
new file mode 100644
index 0000000..87a96ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class
new file mode 100644
index 0000000..d0545e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class
new file mode 100644
index 0000000..aa868a5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class
new file mode 100644
index 0000000..fc8da4b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class
new file mode 100644
index 0000000..698f5a8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class
new file mode 100644
index 0000000..356007e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class
new file mode 100644
index 0000000..f4bab85
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class
new file mode 100644
index 0000000..a1e48c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPack.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPack.class
new file mode 100644
index 0000000..f8bffe7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPack.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class
new file mode 100644
index 0000000..8ea8b59
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/ZoomRange.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/ZoomRange.class
new file mode 100644
index 0000000..c3a4b13
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/modules/ZoomRange.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class
new file mode 100644
index 0000000..255842d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class
new file mode 100644
index 0000000..fd29ac5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class
new file mode 100644
index 0000000..4687586
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class
new file mode 100644
index 0000000..0fbe4ea
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class
new file mode 100644
index 0000000..2d01010
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class
new file mode 100644
index 0000000..725a082
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class
new file mode 100644
index 0000000..9ab1100
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class
new file mode 100644
index 0000000..fa7f692
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class
new file mode 100644
index 0000000..f72d07c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class
new file mode 100644
index 0000000..bc49711
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class
new file mode 100644
index 0000000..1dcb077
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class
new file mode 100644
index 0000000..fe8f3e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class
new file mode 100644
index 0000000..5030568
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class
new file mode 100644
index 0000000..9d503c7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class
new file mode 100644
index 0000000..78c7241
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class
new file mode 100644
index 0000000..45a1900
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class
new file mode 100644
index 0000000..b93881f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils.class
new file mode 100644
index 0000000..9dc1bae
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/BitmapUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class
new file mode 100644
index 0000000..fb9b891
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils.class
new file mode 100644
index 0000000..4df9915
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ConvertUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class
new file mode 100644
index 0000000..74b3a0e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class
new file mode 100644
index 0000000..d27266b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class
new file mode 100644
index 0000000..b1b0c19
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class
new file mode 100644
index 0000000..a24ea7a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class
new file mode 100644
index 0000000..29d3955
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class
new file mode 100644
index 0000000..f1ed445
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class
new file mode 100644
index 0000000..52d71c4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class
new file mode 100644
index 0000000..bdf1ef1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class
new file mode 100644
index 0000000..2202124
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class
new file mode 100644
index 0000000..19b219c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadedImage.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadedImage.class
new file mode 100644
index 0000000..31c2788
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/DownloadedImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ExpressionParser.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ExpressionParser.class
new file mode 100644
index 0000000..8d62fee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ExpressionParser.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class
new file mode 100644
index 0000000..3aa9cd7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ImageEntry.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ImageEntry.class
new file mode 100644
index 0000000..eddaa9c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ImageEntry.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLng.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLng.class
new file mode 100644
index 0000000..a0141ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLng.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class
new file mode 100644
index 0000000..933e87a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds.class
new file mode 100644
index 0000000..66a26d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngBounds.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngQuad.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngQuad.class
new file mode 100644
index 0000000..5933243
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/LatLngQuad.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class
new file mode 100644
index 0000000..6a3983f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class
new file mode 100644
index 0000000..b5bc313
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger.class
new file mode 100644
index 0000000..f1eca55
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/Logger.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyChanges.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyChanges.class
new file mode 100644
index 0000000..d5dd287
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyChanges.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class
new file mode 100644
index 0000000..9a6a8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class
new file mode 100644
index 0000000..6e46fb8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class
new file mode 100644
index 0000000..e2c1949
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class
new file mode 100644
index 0000000..63e3cc9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ReadableMapToValue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ResourceUtils.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ResourceUtils.class
new file mode 100644
index 0000000..4e39312
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ResourceUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class
new file mode 100644
index 0000000..6ecc487
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class
new file mode 100644
index 0000000..c4da875
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class
new file mode 100644
index 0000000..db9cac3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class
new file mode 100644
index 0000000..f6ba141
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class
new file mode 100644
index 0000000..b90cb15
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class
new file mode 100644
index 0000000..9272141
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class
new file mode 100644
index 0000000..d46c450
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class
new file mode 100644
index 0000000..1a33e3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class
new file mode 100644
index 0000000..ec08578
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class
new file mode 100644
index 0000000..f32e9d9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class
new file mode 100644
index 0000000..617b70c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class
new file mode 100644
index 0000000..871ff46
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class
new file mode 100644
index 0000000..658cb5d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class
new file mode 100644
index 0000000..791a8a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class
new file mode 100644
index 0000000..c3e2d0a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class
new file mode 100644
index 0000000..81696a0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/Cancelable.class
new file mode 100644
index 0000000..15c2c66
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/Cancelable.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class
new file mode 100644
index 0000000..627da26
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class
new file mode 100644
index 0000000..5169b3e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class
new file mode 100644
index 0000000..b5b915a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class
new file mode 100644
index 0000000..21bfe99
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class
new file mode 100644
index 0000000..cbee27f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class
new file mode 100644
index 0000000..c89b92d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class
new file mode 100644
index 0000000..324fbf9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class
new file mode 100644
index 0000000..5c35f30
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class
new file mode 100644
index 0000000..544eda2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class
new file mode 100644
index 0000000..a45c5db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class
new file mode 100644
index 0000000..a956493
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class
new file mode 100644
index 0000000..6979817
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class
new file mode 100644
index 0000000..0561426
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class
new file mode 100644
index 0000000..c2e4fa1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class
new file mode 100644
index 0000000..9a6a845
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class
new file mode 100644
index 0000000..79987f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class
new file mode 100644
index 0000000..d12654c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class
new file mode 100644
index 0000000..c08c4a1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class
new file mode 100644
index 0000000..85327d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class
new file mode 100644
index 0000000..88bbd8d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class
new file mode 100644
index 0000000..4d244d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class
new file mode 100644
index 0000000..a10f52a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class
new file mode 100644
index 0000000..a33771f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar
new file mode 100644
index 0000000..ee179f8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ
diff --git a/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
new file mode 100644
index 0000000..af46f7d
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt
@@ -0,0 +1,9 @@
+com.rnmapbox.rnmbx
+drawable empty
+drawable empty_drawable
+drawable red_marker
+id annotation_img
+id annotation_layout
+id annotation_view_container
+layout annotation
+string app_name
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
new file mode 100644
index 0000000..74881a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
new file mode 100644
index 0000000..fa80cbc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
new file mode 100644
index 0000000..28cabbf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
new file mode 100644
index 0000000..4e3f8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values
new file mode 100644
index 0000000..f783432
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
new file mode 100644
index 0000000..5c19bb8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s
new file mode 100644
index 0000000..9205008
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s
@@ -0,0 +1 @@
+ü1Þ*
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
new file mode 100644
index 0000000..7533c83
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
new file mode 100644
index 0000000..a18383f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
new file mode 100644
index 0000000..62b5252
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
new file mode 100644
index 0000000..9ab03c8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
new file mode 100644
index 0000000..51ef024
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
new file mode 100644
index 0000000..dd431d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
new file mode 100644
index 0000000..ad76022
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
new file mode 100644
index 0000000..d4e3a3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
new file mode 100644
index 0000000..62b5252
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
new file mode 100644
index 0000000..9ab03c8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
new file mode 100644
index 0000000..51ef024
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values
new file mode 100644
index 0000000..6fb5c28
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
new file mode 100644
index 0000000..54b94cf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s
new file mode 100644
index 0000000..9ec9419
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.s
@@ -0,0 +1 @@
+à
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
new file mode 100644
index 0000000..ad76022
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
new file mode 100644
index 0000000..4c14737
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
new file mode 100644
index 0000000..3e17e9a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
new file mode 100644
index 0000000..e77f203
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
new file mode 100644
index 0000000..123d5b3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
new file mode 100644
index 0000000..0a639c2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
new file mode 100644
index 0000000..214b7b1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
new file mode 100644
index 0000000..498c59d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
new file mode 100644
index 0000000..9b92239
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
new file mode 100644
index 0000000..e0989a0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
new file mode 100644
index 0000000..a7b93bc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values
new file mode 100644
index 0000000..bdedde3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
new file mode 100644
index 0000000..b3f35e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s
new file mode 100644
index 0000000..cc045e0
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s
@@ -0,0 +1 @@
+àÄ
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
new file mode 100644
index 0000000..0593335
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab
new file mode 100644
index 0000000..54f4418
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream
new file mode 100644
index 0000000..b79d8b5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len
new file mode 100644
index 0000000..54b7bb0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len
new file mode 100644
index 0000000..73e7fcf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at
new file mode 100644
index 0000000..37b7cde
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i
new file mode 100644
index 0000000..e34330e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
new file mode 100644
index 0000000..c99a4a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
new file mode 100644
index 0000000..681a610
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
new file mode 100644
index 0000000..f3bcb31
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
new file mode 100644
index 0000000..d10ff48
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values
new file mode 100644
index 0000000..137121c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
new file mode 100644
index 0000000..91fa2ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
new file mode 100644
index 0000000..d2e0bfb
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s
@@ -0,0 +1 @@
+ÉÈØÃÎÚÆ•ýšÂÑúÓ
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
new file mode 100644
index 0000000..d333fc9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
new file mode 100644
index 0000000..d2b1311
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
new file mode 100644
index 0000000..fa80cbc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
new file mode 100644
index 0000000..28cabbf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
new file mode 100644
index 0000000..4e3f8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values
new file mode 100644
index 0000000..30018bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
new file mode 100644
index 0000000..2219676
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s
new file mode 100644
index 0000000..54d0b58
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.s
@@ -0,0 +1 @@
+ÌD
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
new file mode 100644
index 0000000..7533c83
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
new file mode 100644
index 0000000..68638f3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
new file mode 100644
index 0000000..b0e0fc0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
new file mode 100644
index 0000000..98143f1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
new file mode 100644
index 0000000..7ce6409
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
new file mode 100644
index 0000000..a880ec4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
new file mode 100644
index 0000000..e82053a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
new file mode 100644
index 0000000..55c679f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
new file mode 100644
index 0000000..f774a0d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
new file mode 100644
index 0000000..0520dca
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
new file mode 100644
index 0000000..789b8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
new file mode 100644
index 0000000..d3264fd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
new file mode 100644
index 0000000..6c4f466
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
new file mode 100644
index 0000000..dac8e49
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab
@@ -0,0 +1,2 @@
+144
+0
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
new file mode 100644
index 0000000..44d4742
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
new file mode 100644
index 0000000..fa80cbc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
new file mode 100644
index 0000000..28cabbf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
new file mode 100644
index 0000000..4e3f8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
new file mode 100644
index 0000000..b4ff591
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
new file mode 100644
index 0000000..7533c83
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
new file mode 100644
index 0000000..d8af433
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
new file mode 100644
index 0000000..48c7c30
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
new file mode 100644
index 0000000..01bdaa1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
new file mode 100644
index 0000000..4e3f8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
new file mode 100644
index 0000000..0c6d741
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
new file mode 100644
index 0000000..9c754cd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
new file mode 100644
index 0000000..131e265
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab
new file mode 100644
index 0000000..164c5b6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
new file mode 100644
index 0000000..993f35f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
new file mode 100644
index 0000000..49da394
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
new file mode 100644
index 0000000..6a96e2f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values
new file mode 100644
index 0000000..0c843f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
new file mode 100644
index 0000000..c3d8165
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s
new file mode 100644
index 0000000..d21cfbe
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s
@@ -0,0 +1 @@
+ÔÝ…â‚
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
new file mode 100644
index 0000000..ccabe9f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
new file mode 100644
index 0000000..b9fffc7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin
new file mode 100644
index 0000000..b7db908
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin
new file mode 100644
index 0000000..3b20ad8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ
diff --git a/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin
new file mode 100644
index 0000000..95636d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ
diff --git a/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 0000000..149ef60
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/android/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,29 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12
+INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:1-5:12
+ package
+ ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:70-98
+ INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:1:11-69
+uses-permission#android.permission.INTERNET
+ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:5-67
+ android:name
+ ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:2:22-64
+uses-permission#android.permission.ACCESS_COARSE_LOCATION
+ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:5-80
+ android:name
+ ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:3:22-78
+uses-permission#android.permission.ACCESS_FINE_LOCATION
+ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:5-78
+ android:name
+ ADDED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml:4:22-76
+uses-sdk
+INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml
+INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/brunocardoso/Projects/Personal/parceled/node_modules/@rnmapbox/maps/android/src/main/AndroidManifest.xml
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
new file mode 100644
index 0000000..2bdcd15
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module
new file mode 100644
index 0000000..0964712
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/META-INF/rnmapbox_maps_debug.kotlin_module differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class
new file mode 100644
index 0000000..74e4c4d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/RNMBXPackage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class
new file mode 100644
index 0000000..e664ef8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class
new file mode 100644
index 0000000..e19cff6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class
new file mode 100644
index 0000000..06a9995
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractEventEmitter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class
new file mode 100644
index 0000000..b361652
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/AbstractMapFeature.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class
new file mode 100644
index 0000000..3070161
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/RemovalReason.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class
new file mode 100644
index 0000000..928ec66
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCallout.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class
new file mode 100644
index 0000000..b3e354e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class
new file mode 100644
index 0000000..39dbcb2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXCalloutManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class
new file mode 100644
index 0000000..95887a0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerView.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class
new file mode 100644
index 0000000..3249ceb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class
new file mode 100644
index 0000000..5b5df10
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class
new file mode 100644
index 0000000..d6033cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewContentManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class
new file mode 100644
index 0000000..12e82d8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion$markerViewContainerSizeFixer$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class
new file mode 100644
index 0000000..d18fcf7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class
new file mode 100644
index 0000000..453a5d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXMarkerViewManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class
new file mode 100644
index 0000000..4c52068
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class
new file mode 100644
index 0000000..4daa769
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$addBitmapToStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class
new file mode 100644
index 0000000..36e44e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation$removeView$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class
new file mode 100644
index 0000000..f1143ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class
new file mode 100644
index 0000000..a6e6f1a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class
new file mode 100644
index 0000000..1c2c5db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class
new file mode 100644
index 0000000..ff361d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationCoordinator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class
new file mode 100644
index 0000000..eb13c95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class
new file mode 100644
index 0000000..07c00e0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class
new file mode 100644
index 0000000..5ea24cb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class
new file mode 100644
index 0000000..8b23623
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/RNMBXPointAnnotationModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class
new file mode 100644
index 0000000..2563afc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/annotation/Vec2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class
new file mode 100644
index 0000000..494d1bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/BaseEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class
new file mode 100644
index 0000000..bfd7d40
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class
new file mode 100644
index 0000000..c3b2728
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraStop.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class
new file mode 100644
index 0000000..41f27c7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$CallbackMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class
new file mode 100644
index 0000000..f0d3b41
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem$run$callback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class
new file mode 100644
index 0000000..32d3b8b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateItem.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class
new file mode 100644
index 0000000..dba4251
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue$OnCompleteAllListener.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class
new file mode 100644
index 0000000..ee9f21e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/CameraUpdateQueue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class
new file mode 100644
index 0000000..a8ad98a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class
new file mode 100644
index 0000000..e0da102
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class
new file mode 100644
index 0000000..972177b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$_observeViewportState$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class
new file mode 100644
index 0000000..7c1c0e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera$mCameraCallback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class
new file mode 100644
index 0000000..cec39df
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCamera.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class
new file mode 100644
index 0000000..7196fcb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class
new file mode 100644
index 0000000..7394822
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class
new file mode 100644
index 0000000..0d48aa9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class
new file mode 100644
index 0000000..5d8f296
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class
new file mode 100644
index 0000000..58ce7e4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXCameraModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class
new file mode 100644
index 0000000..1d0cb4d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class
new file mode 100644
index 0000000..e6d3c4f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$FollowPuckViewportStateBearingOrNull.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class
new file mode 100644
index 0000000..6821c94
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class
new file mode 100644
index 0000000..7a889c0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewport.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class
new file mode 100644
index 0000000..09d6697
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class
new file mode 100644
index 0000000..3ab7fdb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class
new file mode 100644
index 0000000..d5457d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class
new file mode 100644
index 0000000..4529ba2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class
new file mode 100644
index 0000000..bebc741
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class
new file mode 100644
index 0000000..1a144a2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/camera/RNMBXViewportModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class
new file mode 100644
index 0000000..dfea4b2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageInfo.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class
new file mode 100644
index 0000000..131be29
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/ImageManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class
new file mode 100644
index 0000000..06a6dff
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class
new file mode 100644
index 0000000..b23fe63
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater$DefaultImpls.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class
new file mode 100644
index 0000000..50d7675
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/NativeImageUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class
new file mode 100644
index 0000000..f524a7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class
new file mode 100644
index 0000000..d3d8396
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class
new file mode 100644
index 0000000..2bf7380
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class
new file mode 100644
index 0000000..e88d4a6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImageModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class
new file mode 100644
index 0000000..073c794
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class
new file mode 100644
index 0000000..68acb5c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$addToMap$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class
new file mode 100644
index 0000000..dd30dc0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages$removeImages$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class
new file mode 100644
index 0000000..947de25
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImages.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class
new file mode 100644
index 0000000..8a62cd2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class
new file mode 100644
index 0000000..988a64d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class
new file mode 100644
index 0000000..0053d48
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class
new file mode 100644
index 0000000..11ce507
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class
new file mode 100644
index 0000000..c753a08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Resolver.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class
new file mode 100644
index 0000000..a5ddb0e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/images/Subscription.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class
new file mode 100644
index 0000000..8016118
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager$State.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class
new file mode 100644
index 0000000..6afc32d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/LocationComponentManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class
new file mode 100644
index 0000000..9a44805
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class
new file mode 100644
index 0000000..71fd4d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class
new file mode 100644
index 0000000..d77720a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$Property.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class
new file mode 100644
index 0000000..2f0d8b0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider$installCustomLocationProviderIfNeeded$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class
new file mode 100644
index 0000000..6f4bfd5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProvider.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class
new file mode 100644
index 0000000..3b6c8c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class
new file mode 100644
index 0000000..d581670
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXCustomLocationProviderManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class
new file mode 100644
index 0000000..c3cd7e0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class
new file mode 100644
index 0000000..d384993
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$PuckImagePart.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class
new file mode 100644
index 0000000..3844cb3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class
new file mode 100644
index 0000000..436b4f2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocation.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class
new file mode 100644
index 0000000..9962166
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class
new file mode 100644
index 0000000..87e61d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class
new file mode 100644
index 0000000..a05be2f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class
new file mode 100644
index 0000000..d176d27
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class
new file mode 100644
index 0000000..c7d5f6d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class
new file mode 100644
index 0000000..250f05f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RNMBXNativeUserLocationManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class
new file mode 100644
index 0000000..e539c9a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/RenderMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class
new file mode 100644
index 0000000..b6080a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/location/UserTrackingMode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class
new file mode 100644
index 0000000..eb78bde
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/Cancelable.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class
new file mode 100644
index 0000000..68b6fc2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/CommandResponse.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class
new file mode 100644
index 0000000..48efc17
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/FeatureEntry.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class
new file mode 100644
index 0000000..c04fea6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/MapGestureType.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class
new file mode 100644
index 0000000..69c7541
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class
new file mode 100644
index 0000000..1f94467
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule$createCommandResponse$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class
new file mode 100644
index 0000000..73eefbe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/NativeMapViewModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class
new file mode 100644
index 0000000..aa85d44
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/OrnamentSettings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class
new file mode 100644
index 0000000..f665ef4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle$onAttachedToWindow$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class
new file mode 100644
index 0000000..b73b352
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class
new file mode 100644
index 0000000..a71fd53
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXLifeCycleOwner.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class
new file mode 100644
index 0000000..4d8599d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class
new file mode 100644
index 0000000..a9d9590
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$FoundLayerCallback.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class
new file mode 100644
index 0000000..b01df95
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$HandleTap.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class
new file mode 100644
index 0000000..b191b5f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class
new file mode 100644
index 0000000..1941ee7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class
new file mode 100644
index 0000000..5d65efe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class
new file mode 100644
index 0000000..5ff8975
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class
new file mode 100644
index 0000000..2fb7b00
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$5.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class
new file mode 100644
index 0000000..20081fc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$6.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class
new file mode 100644
index 0000000..acc3948
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property$7.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class
new file mode 100644
index 0000000..deca726
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$Property.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class
new file mode 100644
index 0000000..59cb9c2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class
new file mode 100644
index 0000000..369eba7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class
new file mode 100644
index 0000000..e24db7d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$applyStyleURL$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class
new file mode 100644
index 0000000..bc8df4f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapClick$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class
new file mode 100644
index 0000000..ee1cbb2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class
new file mode 100644
index 0000000..572aa08
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class
new file mode 100644
index 0000000..52a799c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$5.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class
new file mode 100644
index 0000000..51305c3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$6.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class
new file mode 100644
index 0000000..20dce90
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$7.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class
new file mode 100644
index 0000000..c76733b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$onMapReady$8.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class
new file mode 100644
index 0000000..a9aca6a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView$setupEvents$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class
new file mode 100644
index 0000000..54529bc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class
new file mode 100644
index 0000000..66f350e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class
new file mode 100644
index 0000000..c574625
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewFactory.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class
new file mode 100644
index 0000000..6870543
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class
new file mode 100644
index 0000000..abf652c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class
new file mode 100644
index 0000000..3e4b6b1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager$MapShadowNode.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class
new file mode 100644
index 0000000..45b414c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class
new file mode 100644
index 0000000..ea858f7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class
new file mode 100644
index 0000000..e6f6579
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeReason.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class
new file mode 100644
index 0000000..1f56551
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/mapview/helpers/CameraChangeTracker.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class
new file mode 100644
index 0000000..4dc8d3d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class
new file mode 100644
index 0000000..8de4e41
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class
new file mode 100644
index 0000000..3ce3729
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setBackgroundLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class
new file mode 100644
index 0000000..322876f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillExtrusionLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class
new file mode 100644
index 0000000..4c22015
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setFillLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class
new file mode 100644
index 0000000..ff90d7b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setLineLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class
new file mode 100644
index 0000000..7ab5d60
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class
new file mode 100644
index 0000000..b3a81dc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory$setSymbolLayerStyle$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class
new file mode 100644
index 0000000..908464c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactory.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class
new file mode 100644
index 0000000..1de3ca5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleFactoryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class
new file mode 100644
index 0000000..9f1def1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImport.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class
new file mode 100644
index 0000000..210fed9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class
new file mode 100644
index 0000000..f12809f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleImportManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class
new file mode 100644
index 0000000..4084180
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class
new file mode 100644
index 0000000..2e2db68
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class
new file mode 100644
index 0000000..e92f7c5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphere.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class
new file mode 100644
index 0000000..668aa91
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class
new file mode 100644
index 0000000..e13c7d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/atmosphere/RNMBXAtmosphereManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class
new file mode 100644
index 0000000..15b33ec
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class
new file mode 100644
index 0000000..b3d4e19
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class
new file mode 100644
index 0000000..657bdef
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXBackgroundLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class
new file mode 100644
index 0000000..99f38f0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class
new file mode 100644
index 0000000..b2e1a14
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class
new file mode 100644
index 0000000..5b01d3b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXCircleLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class
new file mode 100644
index 0000000..9824088
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class
new file mode 100644
index 0000000..f357b9b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class
new file mode 100644
index 0000000..c4c613f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillExtrusionLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class
new file mode 100644
index 0000000..d0c198c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class
new file mode 100644
index 0000000..8e2e020
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class
new file mode 100644
index 0000000..e39c8f4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXFillLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class
new file mode 100644
index 0000000..7ad4879
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class
new file mode 100644
index 0000000..488113d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class
new file mode 100644
index 0000000..9a1afc5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXHeatmapLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class
new file mode 100644
index 0000000..d47136f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class
new file mode 100644
index 0000000..fa83b04
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addAbove$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class
new file mode 100644
index 0000000..0f7fd4e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer$addBelow$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class
new file mode 100644
index 0000000..f140ab5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class
new file mode 100644
index 0000000..8153602
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class
new file mode 100644
index 0000000..8266fac
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class
new file mode 100644
index 0000000..a904064
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXLineLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class
new file mode 100644
index 0000000..bde85d1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class
new file mode 100644
index 0000000..6f135ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class
new file mode 100644
index 0000000..7df71f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXModelLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class
new file mode 100644
index 0000000..4a9d8d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class
new file mode 100644
index 0000000..e064d9f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class
new file mode 100644
index 0000000..f87be8f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXRasterLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class
new file mode 100644
index 0000000..6f46b86
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class
new file mode 100644
index 0000000..5391b6b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class
new file mode 100644
index 0000000..09fe99b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSkyLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class
new file mode 100644
index 0000000..b5a82b7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class
new file mode 100644
index 0000000..c5605ed
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class
new file mode 100644
index 0000000..d23f9a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/layers/RNMBXSymbolLayerManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class
new file mode 100644
index 0000000..b42ebf6
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLight.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class
new file mode 100644
index 0000000..a728fd3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class
new file mode 100644
index 0000000..0429d1c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/light/RNMBXLightManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class
new file mode 100644
index 0000000..7627d6a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModels.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class
new file mode 100644
index 0000000..019ba05
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class
new file mode 100644
index 0000000..93674e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/model/RNMBXModelsManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class
new file mode 100644
index 0000000..205d4e3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/AbstractSourceConsumer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class
new file mode 100644
index 0000000..5f96909
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/FeatureInfo.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class
new file mode 100644
index 0000000..f4ab75c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class
new file mode 100644
index 0000000..db259d7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class
new file mode 100644
index 0000000..3a7c36b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class
new file mode 100644
index 0000000..1d93a54
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXImageSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class
new file mode 100644
index 0000000..9513260
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class
new file mode 100644
index 0000000..baf5be7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class
new file mode 100644
index 0000000..82024e8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterDemSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class
new file mode 100644
index 0000000..c89b33d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class
new file mode 100644
index 0000000..983090e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class
new file mode 100644
index 0000000..665574b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class
new file mode 100644
index 0000000..9333ac3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class
new file mode 100644
index 0000000..c30fac7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class
new file mode 100644
index 0000000..f4fdef8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class
new file mode 100644
index 0000000..eee12e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class
new file mode 100644
index 0000000..9cbb843
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class
new file mode 100644
index 0000000..2950c8c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class
new file mode 100644
index 0000000..6d23ed9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class
new file mode 100644
index 0000000..30f376b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class
new file mode 100644
index 0000000..f6be87d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class
new file mode 100644
index 0000000..652fa64
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$OnPressEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class
new file mode 100644
index 0000000..9cca8bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource$addToMap$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class
new file mode 100644
index 0000000..66304a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class
new file mode 100644
index 0000000..faa0305
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class
new file mode 100644
index 0000000..da54973
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class
new file mode 100644
index 0000000..b498da3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class
new file mode 100644
index 0000000..49a3294
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSource.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class
new file mode 100644
index 0000000..bbb3403
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class
new file mode 100644
index 0000000..42ab4a9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/sources/RNMBXVectorSourceManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class
new file mode 100644
index 0000000..9d2283b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrain.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class
new file mode 100644
index 0000000..b15f81e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class
new file mode 100644
index 0000000..56a746a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/components/styles/terrain/RNMBXTerrainManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class
new file mode 100644
index 0000000..3852b7f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/AbstractEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class
new file mode 100644
index 0000000..6c8fddc
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/CameraChangeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class
new file mode 100644
index 0000000..4e708fe
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/IEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class
new file mode 100644
index 0000000..46a2abd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/LocationEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class
new file mode 100644
index 0000000..7b7281c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapChangeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class
new file mode 100644
index 0000000..1111ba1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/MapUserTrackingModeEvent.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class
new file mode 100644
index 0000000..36f6b2d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeys.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class
new file mode 100644
index 0000000..d2748bf
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventKeysKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class
new file mode 100644
index 0000000..987f8f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/events/constants/EventTypes.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class
new file mode 100644
index 0000000..323f83a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class
new file mode 100644
index 0000000..ed5de63
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class
new file mode 100644
index 0000000..edf1123
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$OnUserLocationChange.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class
new file mode 100644
index 0000000..34dd6e9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager$getLastKnownLocation$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class
new file mode 100644
index 0000000..b5f8c56
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class
new file mode 100644
index 0000000..8c6d69f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/LocationProviderForEngine.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class
new file mode 100644
index 0000000..53fccf7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/location/SingletonHolder.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class
new file mode 100644
index 0000000..b655964
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/CustomHttpHeaders.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class
new file mode 100644
index 0000000..df219bb
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/LocationEventThrottle.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class
new file mode 100644
index 0000000..a760f62
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class
new file mode 100644
index 0000000..440d2f5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$getLastKnownLocation$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class
new file mode 100644
index 0000000..fe31ff8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$lifecycleEventListener$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class
new file mode 100644
index 0000000..5aa0a3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule$onUserLocationChangeCallback$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class
new file mode 100644
index 0000000..6bf61d4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLocationModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class
new file mode 100644
index 0000000..701f7a3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class
new file mode 100644
index 0000000..e7b57ee
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class
new file mode 100644
index 0000000..0685dad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXLogging.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class
new file mode 100644
index 0000000..c7f8291
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class
new file mode 100644
index 0000000..cdd1032
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class
new file mode 100644
index 0000000..6ce7949
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class
new file mode 100644
index 0000000..097b021
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$deletePack$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class
new file mode 100644
index 0000000..96d908c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1$run$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class
new file mode 100644
index 0000000..0db9e09
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule$getPacks$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class
new file mode 100644
index 0000000..261e6e2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class
new file mode 100644
index 0000000..d020cfd
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class
new file mode 100644
index 0000000..87a96ad
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class
new file mode 100644
index 0000000..d0545e7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy$getPacks$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class
new file mode 100644
index 0000000..aa868a5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXOfflineModuleLegacy.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class
new file mode 100644
index 0000000..fc8da4b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class
new file mode 100644
index 0000000..698f5a8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXSnapshotModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class
new file mode 100644
index 0000000..356007e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class
new file mode 100644
index 0000000..f4bab85
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class
new file mode 100644
index 0000000..a1e48c9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/RNMBXTileStoreModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class
new file mode 100644
index 0000000..f8bffe7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPack.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class
new file mode 100644
index 0000000..8ea8b59
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/TileRegionPackState.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class
new file mode 100644
index 0000000..c3a4b13
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/modules/ZoomRange.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class
new file mode 100644
index 0000000..255842d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/dynamic/DynamicKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class
new file mode 100644
index 0000000..fd29ac5
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/rncompat/readable_map/ReadableMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class
new file mode 100644
index 0000000..4687586
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/AnimatableElement.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class
new file mode 100644
index 0000000..0fbe4ea
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ChangeLineOffsetsShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class
new file mode 100644
index 0000000..2d01010
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/MovePointShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class
new file mode 100644
index 0000000..725a082
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class
new file mode 100644
index 0000000..9ab1100
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class
new file mode 100644
index 0000000..fa7f692
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModuleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class
new file mode 100644
index 0000000..f72d07c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class
new file mode 100644
index 0000000..bc49711
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/RNMBXMovePointShapeAnimatorModule.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class
new file mode 100644
index 0000000..1dcb077
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimationConsumer.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class
new file mode 100644
index 0000000..fe8f3e1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimator.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class
new file mode 100644
index 0000000..5030568
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon$start$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class
new file mode 100644
index 0000000..9d503c7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommon.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class
new file mode 100644
index 0000000..78c7241
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorCommonKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class
new file mode 100644
index 0000000..45a1900
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/shapeAnimators/ShapeAnimatorManager.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class
new file mode 100644
index 0000000..b93881f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils$mCache$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class
new file mode 100644
index 0000000..9dc1bae
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/BitmapUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class
new file mode 100644
index 0000000..74b3a0e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/CustomPropUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class
new file mode 100644
index 0000000..d27266b
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class
new file mode 100644
index 0000000..b1b0c19
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$OnAllImagesLoaded.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class
new file mode 100644
index 0000000..a24ea7a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImage$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class
new file mode 100644
index 0000000..29d3955
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class
new file mode 100644
index 0000000..f1ed445
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class
new file mode 100644
index 0000000..52d71c4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$downloadImages$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class
new file mode 100644
index 0000000..bdf1ef1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1$images$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class
new file mode 100644
index 0000000..2202124
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask$execute$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class
new file mode 100644
index 0000000..19b219c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadMapImageTask.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class
new file mode 100644
index 0000000..31c2788
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/DownloadedImage.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class
new file mode 100644
index 0000000..3aa9cd7
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/GeoJSONUtils.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class
new file mode 100644
index 0000000..eddaa9c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ImageEntry.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class
new file mode 100644
index 0000000..933e87a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class
new file mode 100644
index 0000000..66a26d2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/LatLngBounds.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class
new file mode 100644
index 0000000..6a3983f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$LoggerDefinition.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class
new file mode 100644
index 0000000..b5bc313
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger$logger$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class
new file mode 100644
index 0000000..f1eca55
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/Logger.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class
new file mode 100644
index 0000000..d5dd287
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyChanges.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class
new file mode 100644
index 0000000..9a6a8d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdater.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class
new file mode 100644
index 0000000..6e46fb8
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/PropertyUpdaterWithName.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class
new file mode 100644
index 0000000..6ecc487
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolver.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class
new file mode 100644
index 0000000..c4da875
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagResolverKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class
new file mode 100644
index 0000000..db9cac3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/ViewTagWaiter.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class
new file mode 100644
index 0000000..f6ba141
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/WriteableMapArrayOfKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class
new file mode 100644
index 0000000..b90cb15
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/CoordinateBoundsKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class
new file mode 100644
index 0000000..9272141
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class
new file mode 100644
index 0000000..d46c450
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/DynamicKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class
new file mode 100644
index 0000000..1a33e3c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/FeatureCollectionKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class
new file mode 100644
index 0000000..ec08578
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/GeometryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class
new file mode 100644
index 0000000..f32e9d9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/JSONObjectKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class
new file mode 100644
index 0000000..617b70c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/PointKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class
new file mode 100644
index 0000000..871ff46
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class
new file mode 100644
index 0000000..658cb5d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableArrayKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class
new file mode 100644
index 0000000..791a8a4
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt$WhenMappings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class
new file mode 100644
index 0000000..c3e2d0a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ReadableMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class
new file mode 100644
index 0000000..81696a0
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/utils/extensions/ValueKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class
new file mode 100644
index 0000000..15c2c66
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/Cancelable.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class
new file mode 100644
index 0000000..627da26
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/AnnotationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class
new file mode 100644
index 0000000..5169b3e
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/annotation/OnViewAnnotationUpdatedListener.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class
new file mode 100644
index 0000000..b5b915a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/event/EventKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class
new file mode 100644
index 0000000..21bfe99
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/feature/FeatureKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class
new file mode 100644
index 0000000..cbee27f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/httpinterceptor/HttpServiceBase.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class
new file mode 100644
index 0000000..c89b92d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11$Companion.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class
new file mode 100644
index 0000000..324fbf9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/AppCompatResourcesV11.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class
new file mode 100644
index 0000000..5c35f30
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/image/ImageKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class
new file mode 100644
index 0000000..544eda2
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/layer/LayerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class
new file mode 100644
index 0000000..a45c5db
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/light/LightKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class
new file mode 100644
index 0000000..a956493
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/location/LocationKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class
new file mode 100644
index 0000000..6979817
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/mapboxmap/MapboxMapKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class
new file mode 100644
index 0000000..0561426
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/offlinemanager/OfflineManagerKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class
new file mode 100644
index 0000000..c2e4fa1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/GenericOrnamentSettings.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class
new file mode 100644
index 0000000..9a6a845
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$1.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class
new file mode 100644
index 0000000..79987f9
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$2.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class
new file mode 100644
index 0000000..d12654c
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$3.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class
new file mode 100644
index 0000000..c08c4a1
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt$toGenericOrnamentSettings$4.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class
new file mode 100644
index 0000000..85327d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/ornamentsettings/OrnamentSettingsKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class
new file mode 100644
index 0000000..88bbd8d
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/resourceoption/ResourceOptionKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class
new file mode 100644
index 0000000..4d244d3
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/snapshot/SnapshotKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class
new file mode 100644
index 0000000..a10f52a
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/style/StyleKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class
new file mode 100644
index 0000000..a33771f
Binary files /dev/null and b/node_modules/@rnmapbox/maps/android/build/tmp/kotlin-classes/debug/com/rnmapbox/rnmbx/v11compat/stylefactory/StyleFactoryKt.class differ
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt
index fb2147f..a80c05d 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/images/RNMBXImagesManager.kt
@@ -249,10 +249,12 @@ class RNMBXImagesManager(private val mContext: ReactApplicationContext) :
Logger.e("RNMBXImages", "each element of strech should be an array but was: ${array.getDynamic(i)}")
} else {
val pair = array.getArray(i)
- if (pair.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) {
- Logger.e("RNMBXImages", "each element of stretch should be pair of 2 integers but was ${pair}")
- }
- result.add(ImageStretches(pair.getDouble(0).toFloat(), pair.getDouble(1).toFloat()))
+ if (pair != null) {
+ if (pair.size() != 2 || pair.getType(0) != ReadableType.Number || pair.getType(1) != ReadableType.Number) {
+ Logger.e("RNMBXImages", "each element of stretch should be pair of 2 integers but was ${pair}")
+ }
+ result.add(ImageStretches(pair.getDouble(0).toFloat(), pair.getDouble(1).toFloat()))
+ }
}
}
return result;
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt
index 688f3a6..45db087 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapView.kt
@@ -15,7 +15,6 @@ import android.widget.FrameLayout
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.LifecycleOwner
import androidx.lifecycle.LifecycleRegistry
-import androidx.lifecycle.ViewTreeLifecycleOwner
import com.facebook.react.bridge.*
import com.mapbox.android.gestures.*
import com.mapbox.bindgen.Value
@@ -131,11 +130,11 @@ class RNMBXLifeCycle {
}
}
- override fun getLifecycle(): Lifecycle {
- return lifecycleRegistry
- }
+ // Replace getLifecycle() with property syntax
+ override val lifecycle: Lifecycle get() = lifecycleRegistry
}
- ViewTreeLifecycleOwner.set(view, lifecycleOwner);
+ // Comment out ViewTreeLifecycleOwner.set
+ //ViewTreeLifecycleOwner.set(view, lifecycleOwner);
}
lifecycleOwner?.handleLifecycleEvent(Lifecycle.Event.ON_START)
}
@@ -588,7 +587,7 @@ open class RNMBXMapView(private val mContext: Context, var mManager: RNMBXMapVie
ATTRIBUTION(RNMBXMapView::applyAttribution),
LOGO(RNMBXMapView::applyLogo),
SCALEBAR(RNMBXMapView::applyScaleBar),
- COMPASS(RNMBXMapView::applyCompass),;
+ COMPASS(RNMBXMapView::applyCompass);
override fun apply(mapView: RNMBXMapView) {
_apply(mapView)
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt
index 220cf54..b5e9246 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/mapview/RNMBXMapViewManager.kt
@@ -34,13 +34,13 @@ import java.util.HashMap
fun ReadableArray.forEachString(action: (String) -> Unit) {
for (i in 0 until size()) {
- action(getString(i))
+ getString(i)?.let { action(it) }
}
}
fun ReadableArray.asArrayString(): Array {
val result = Array(size()) {
- getString(it)
+ getString(it).toString()
}
return result
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt
index db13128..0e8fb27 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/RNMBXStyleValue.kt
@@ -82,7 +82,9 @@ class RNMBXStyleValue(config: ReadableMap) {
val result = ArrayList(arr!!.size())
for (i in 0 until arr.size()) {
val item = arr.getMap(i)
- result.add(item.getDouble("value"))
+ if (item != null) {
+ result.add(item.getDouble("value"))
+ }
}
return result
}
@@ -104,7 +106,7 @@ class RNMBXStyleValue(config: ReadableMap) {
val result = ArrayList(arr!!.size())
for (i in 0 until arr.size()) {
val item = arr.getMap(i)
- val value = item.getString("value")
+ val value = item?.getString("value")
if (value != null) {
result.add(value)
} else {
@@ -121,9 +123,11 @@ class RNMBXStyleValue(config: ReadableMap) {
val result = WritableNativeMap()
for (i in 0 until keyValues!!.size()) {
val keyValue = keyValues.getArray(i)
- val stringKey = keyValue.getMap(0).getString("value")
+ val stringKey = keyValue?.getMap(0)?.getString("value")
val value = WritableNativeMap()
- value.merge(keyValue.getMap(1))
+ if (keyValue != null) {
+ keyValue.getMap(1)?.let { value.merge(it) }
+ }
result.putMap(stringKey!!, value)
}
return result
@@ -131,7 +135,7 @@ class RNMBXStyleValue(config: ReadableMap) {
return null
}
- fun getMap(_key: String?): ReadableMap? {
+ fun getMap(_key: String): ReadableMap? {
return map
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt
index fe7f6ad..d6437ca 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSource.kt
@@ -34,4 +34,8 @@ class RNMBXRasterSource(context: Context?) : RNMBXTileSource(cont
companion object {
const val DEFAULT_TILE_SIZE = 512
}
+
+ fun setSourceBounds(value: Array) {
+ bounds = value
+ }
}
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt
index f53c8b4..2edda91 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXRasterSourceManager.kt
@@ -8,6 +8,8 @@ import com.facebook.react.viewmanagers.RNMBXRasterSourceManagerInterface
import com.rnmapbox.rnmbx.events.constants.EventKeys
import com.rnmapbox.rnmbx.events.constants.eventMapOf
import javax.annotation.Nonnull
+import com.facebook.react.bridge.ReadableType
+import com.rnmapbox.rnmbx.utils.Logger
class RNMBXRasterSourceManager(reactApplicationContext: ReactApplicationContext) :
RNMBXTileSourceManager(reactApplicationContext),
@@ -42,4 +44,32 @@ class RNMBXRasterSourceManager(reactApplicationContext: ReactApplicationContext)
override fun setExisting(source: RNMBXRasterSource, value: Dynamic) {
source.mExisting = value.asBoolean()
}
+
+ @ReactProp(name = "sourceBounds")
+ override fun setSourceBounds(source: RNMBXRasterSource, value: Dynamic) {
+ if (value.type != ReadableType.Array || value.asArray().size() != 4) {
+ Logger.e(REACT_CLASS, "source bounds must be an array with left, bottom, top, and right values")
+ return
+ }
+ val bboxArray = Array(4) { i -> value.asArray().getDouble(i) }
+
+ if(!this.validateBbox(bboxArray)){
+ Logger.e(REACT_CLASS, "source bounds contain invalid bbox")
+ return
+ }
+
+ source.setSourceBounds(bboxArray)
+ }
+
+ private fun validateBbox(bbox: Array): Boolean {
+ if (bbox.size != 4) return false
+
+ val (swLng, swLat, neLng, neLat) = bbox
+
+ val isLngValid = swLng in -180.0..180.0 && neLng in -180.0..180.0
+ val isLatValid = swLat in -90.0..90.0 && neLat in -90.0..90.0
+ val isSouthWestOfNorthEast = swLng < neLng && swLat < neLat
+
+ return isLngValid && isLatValid && isSouthWestOfNorthEast
+ }
}
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt
index 637372d..2b45f07 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXShapeSourceManager.kt
@@ -119,7 +119,7 @@ class RNMBXShapeSourceManager(private val mContext: ReactApplicationContext, val
)
ReadableType.Boolean -> Expression.literal(expressions.getBoolean(iExp))
ReadableType.Number -> Expression.literal(expressions.getDouble(iExp))
- else -> Expression.literal(expressions.getString(iExp))
+ else -> expressions.getString(iExp)?.let { Expression.literal(it) }!!
}
builder.add(argument)
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt
index 91541bc..63d1e68 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSource.kt
@@ -13,6 +13,7 @@ abstract class RNMBXTileSource(context: Context?) : RNMBXSource(
var attribution: String? = null
var minZoomLevel: Int? = null
var maxZoomLevel: Int? = null
+ var bounds: Array? = null
var tMS = false
fun buildTileset(): TileSet {
val tileUrlTemplates =
@@ -35,6 +36,9 @@ abstract class RNMBXTileSource(context: Context?) : RNMBXSource(
if (attribution != null) {
builder.attribution(attribution)
}
+ bounds?.let {
+ builder.bounds(it.toList())
+ }
return builder.build()
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt
index 3b0a072..6c77f5a 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/components/styles/sources/RNMBXTileSourceManager.kt
@@ -41,7 +41,7 @@ abstract class RNMBXTileSourceManager> internal construct
val urls: MutableList = ArrayList()
for (i in 0 until tileUrlTemplates.asArray().size()) {
if (tileUrlTemplates.asArray().getType(0) == ReadableType.String) {
- urls.add(tileUrlTemplates.asArray().getString(i))
+ tileUrlTemplates.asArray().getString(i)?.let { urls.add(it) }
}
}
source!!.tileUrlTemplates = urls
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt
index 28d1020..41f80d5 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/shapeAnimators/RNMBXChangeLineOffsetsShapeAnimatorModule.kt
@@ -210,7 +210,7 @@ private fun buildLineString(_coordinates: ReadableArray): LineString {
for (i in 0 until _coordinates.size()) {
val arr = _coordinates.getArray(i)
- val coord = Point.fromLngLat(arr.getDouble(0), arr.getDouble(1))
+ val coord = Point.fromLngLat(arr!!.getDouble(0), arr.getDouble(1))
coordinates = coordinates.plus(coord)
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt
index d52fa21..cdd88d9 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/Dynamic.kt
@@ -33,15 +33,16 @@ fun ReadableArray.toValue(): Value {
var result = ArrayList(size())
for (i in 0 until size()) {
- result.add(
when (getType(i)) {
ReadableType.Null -> Value.nullValue()
ReadableType.Boolean -> Value.valueOf(getBoolean(i))
ReadableType.Number -> Value.valueOf(getDouble(i))
- ReadableType.String -> Value.valueOf(getString(i))
- ReadableType.Array -> getArray(i).toValue()
- ReadableType.Map -> getMap(i).toValue()
- })
+ ReadableType.String -> getString(i)?.let { Value.valueOf(it) }
+ ReadableType.Array -> getArray(i)?.toValue()
+ ReadableType.Map -> getMap(i)?.toValue()
+ }?.let {
+ result.add(it)
+ }
}
return Value.valueOf(result)
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt
index 83a78bc..5e02895 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableArray.kt
@@ -46,8 +46,8 @@ fun ReadableArray.toJsonArray() : JsonArray {
val result = JsonArray(size())
for (i in 0 until size()) {
when (getType(i)) {
- ReadableType.Map -> result.add(getMap(i).toJsonObject())
- ReadableType.Array -> result.add(getArray(i).toJsonArray())
+ ReadableType.Map -> result.add(getMap(i)!!.toJsonObject())
+ ReadableType.Array -> result.add(getArray(i)!!.toJsonArray())
ReadableType.Null -> result.add(null as JsonElement?)
ReadableType.Number -> result.add(getDouble(i))
ReadableType.String -> result.add(getString(i))
diff --git a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt
index c69ef8c..d2e99cd 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/java/com/rnmapbox/rnmbx/utils/extensions/ReadableMap.kt
@@ -25,7 +25,7 @@ fun ReadableMap.forEach(action: (String, Any) -> Unit) {
val iterator = this.entryIterator
while (iterator.hasNext()) {
val next = iterator.next()
- action(next.key, next.value)
+ next.value?.let { action(next.key, it) }
}
}
fun ReadableMap.getIfDouble(key: String): Double? {
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java
index 5a06406..7032b6c 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXAtmosphereManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXAtmosphereManagerDelegate & RNMBXAtmosphereManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXAtmosphereManagerDelegate & RNMBXAtmosphereManagerInterface> extends BaseViewManagerDelegate {
public RNMBXAtmosphereManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java
index 76568d1..89c5662 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXBackgroundLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXBackgroundLayerManagerDelegate & RNMBXBackgroundLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXBackgroundLayerManagerDelegate & RNMBXBackgroundLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXBackgroundLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java
index 2b3e086..dbace3f 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCalloutManagerDelegate.java
@@ -11,10 +11,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXCalloutManagerDelegate & RNMBXCalloutManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXCalloutManagerDelegate & RNMBXCalloutManagerInterface> extends BaseViewManagerDelegate {
public RNMBXCalloutManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java
index eef1384..9e4c5a2 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCameraManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXCameraManagerDelegate & RNMBXCameraManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXCameraManagerDelegate & RNMBXCameraManagerInterface> extends BaseViewManagerDelegate {
public RNMBXCameraManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java
index 3b2b41b..1ee3092 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCircleLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXCircleLayerManagerDelegate & RNMBXCircleLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXCircleLayerManagerDelegate & RNMBXCircleLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXCircleLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java
index f3bd0f8..7f63c59 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXCustomLocationProviderManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXCustomLocationProviderManagerDelegate & RNMBXCustomLocationProviderManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXCustomLocationProviderManagerDelegate & RNMBXCustomLocationProviderManagerInterface> extends BaseViewManagerDelegate {
public RNMBXCustomLocationProviderManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java
index 0293627..c37a8b7 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillExtrusionLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXFillExtrusionLayerManagerDelegate & RNMBXFillExtrusionLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXFillExtrusionLayerManagerDelegate & RNMBXFillExtrusionLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXFillExtrusionLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java
index 6e5f1ad..da19e3f 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXFillLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXFillLayerManagerDelegate & RNMBXFillLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXFillLayerManagerDelegate & RNMBXFillLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXFillLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java
index f7358c2..39fd79b 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXHeatmapLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXHeatmapLayerManagerDelegate & RNMBXHeatmapLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXHeatmapLayerManagerDelegate & RNMBXHeatmapLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXHeatmapLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java
index 0857a07..5abf7c1 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXImageManagerDelegate & RNMBXImageManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXImageManagerDelegate & RNMBXImageManagerInterface> extends BaseViewManagerDelegate {
public RNMBXImageManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java
index d0f6999..bb46c55 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImageSourceManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXImageSourceManagerDelegate & RNMBXImageSourceManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXImageSourceManagerDelegate & RNMBXImageSourceManagerInterface> extends BaseViewManagerDelegate {
public RNMBXImageSourceManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java
index 59a80b2..7147c92 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXImagesManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXImagesManagerDelegate & RNMBXImagesManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXImagesManagerDelegate & RNMBXImagesManagerInterface> extends BaseViewManagerDelegate {
public RNMBXImagesManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java
index 90cd362..31c8194 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLightManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXLightManagerDelegate & RNMBXLightManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXLightManagerDelegate & RNMBXLightManagerInterface> extends BaseViewManagerDelegate {
public RNMBXLightManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java
index 47b42a5..abd033f 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXLineLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXLineLayerManagerDelegate & RNMBXLineLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXLineLayerManagerDelegate & RNMBXLineLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXLineLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java
index 63e6d3d..dd91681 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMapViewManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXMapViewManagerDelegate & RNMBXMapViewManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXMapViewManagerDelegate & RNMBXMapViewManagerInterface> extends BaseViewManagerDelegate {
public RNMBXMapViewManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java
index 9f88fce..084c995 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewContentManagerDelegate.java
@@ -11,10 +11,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXMarkerViewContentManagerDelegate & RNMBXMarkerViewContentManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXMarkerViewContentManagerDelegate & RNMBXMarkerViewContentManagerInterface> extends BaseViewManagerDelegate {
public RNMBXMarkerViewContentManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java
index 78fd466..1adc4a9 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXMarkerViewManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXMarkerViewManagerDelegate & RNMBXMarkerViewManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXMarkerViewManagerDelegate & RNMBXMarkerViewManagerInterface> extends BaseViewManagerDelegate {
public RNMBXMarkerViewManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java
index 28dfb46..1054fbc 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXModelLayerManagerDelegate & RNMBXModelLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXModelLayerManagerDelegate & RNMBXModelLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXModelLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java
index 7513c49..fcef289 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXModelsManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXModelsManagerDelegate & RNMBXModelsManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXModelsManagerDelegate & RNMBXModelsManagerInterface> extends BaseViewManagerDelegate {
public RNMBXModelsManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java
index b0ef22a..c73d1a5 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXNativeUserLocationManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXNativeUserLocationManagerDelegate & RNMBXNativeUserLocationManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXNativeUserLocationManagerDelegate & RNMBXNativeUserLocationManagerInterface> extends BaseViewManagerDelegate {
public RNMBXNativeUserLocationManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java
index 70aa36d..9fb8bcb 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXPointAnnotationManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXPointAnnotationManagerDelegate & RNMBXPointAnnotationManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXPointAnnotationManagerDelegate & RNMBXPointAnnotationManagerInterface> extends BaseViewManagerDelegate {
public RNMBXPointAnnotationManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java
index 6a0ef3b..cdf0f58 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterDemSourceManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXRasterDemSourceManagerDelegate & RNMBXRasterDemSourceManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXRasterDemSourceManagerDelegate & RNMBXRasterDemSourceManagerInterface> extends BaseViewManagerDelegate {
public RNMBXRasterDemSourceManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java
index 0630ce3..629fd18 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXRasterLayerManagerDelegate & RNMBXRasterLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXRasterLayerManagerDelegate & RNMBXRasterLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXRasterLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java
index 3e6fafe..29198ae 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXRasterSourceManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXRasterSourceManagerDelegate & RNMBXRasterSourceManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXRasterSourceManagerDelegate & RNMBXRasterSourceManagerInterface> extends BaseViewManagerDelegate {
public RNMBXRasterSourceManagerDelegate(U viewManager) {
super(viewManager);
}
@@ -49,6 +51,9 @@ public class RNMBXRasterSourceManagerDelegate {
void setTileSize(T view, Dynamic value);
void setTms(T view, Dynamic value);
void setAttribution(T view, Dynamic value);
+ void setSourceBounds(T view, Dynamic value);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java
index 75ebce1..e697ad3 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXShapeSourceManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXShapeSourceManagerDelegate & RNMBXShapeSourceManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXShapeSourceManagerDelegate & RNMBXShapeSourceManagerInterface> extends BaseViewManagerDelegate {
public RNMBXShapeSourceManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java
index 446a1aa..58579fc 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSkyLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXSkyLayerManagerDelegate & RNMBXSkyLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXSkyLayerManagerDelegate & RNMBXSkyLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXSkyLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java
index 5a867b7..0e8f234 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXStyleImportManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXStyleImportManagerDelegate & RNMBXStyleImportManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXStyleImportManagerDelegate & RNMBXStyleImportManagerInterface> extends BaseViewManagerDelegate {
public RNMBXStyleImportManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java
index ebf1112..ee9e8b0 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXSymbolLayerManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXSymbolLayerManagerDelegate & RNMBXSymbolLayerManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXSymbolLayerManagerDelegate & RNMBXSymbolLayerManagerInterface> extends BaseViewManagerDelegate {
public RNMBXSymbolLayerManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java
index 54a428c..332465e 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXTerrainManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXTerrainManagerDelegate & RNMBXTerrainManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXTerrainManagerDelegate & RNMBXTerrainManagerInterface> extends BaseViewManagerDelegate {
public RNMBXTerrainManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java
index c47abe3..55adc84 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXVectorSourceManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXVectorSourceManagerDelegate & RNMBXVectorSourceManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXVectorSourceManagerDelegate & RNMBXVectorSourceManagerInterface> extends BaseViewManagerDelegate {
public RNMBXVectorSourceManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java
index dc37ae1..ec23013 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java
+++ b/node_modules/@rnmapbox/maps/android/src/main/old-arch/com/facebook/react/viewmanagers/RNMBXViewportManagerDelegate.java
@@ -12,10 +12,12 @@ package com.facebook.react.viewmanagers;
import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.bridge.DynamicFromObject;
+
+import com.facebook.react.uimanager.BaseViewManager;
import com.facebook.react.uimanager.BaseViewManagerDelegate;
-import com.facebook.react.uimanager.BaseViewManagerInterface;
+import com.facebook.react.uimanager.LayoutShadowNode;
-public class RNMBXViewportManagerDelegate & RNMBXViewportManagerInterface> extends BaseViewManagerDelegate {
+public class RNMBXViewportManagerDelegate & RNMBXViewportManagerInterface> extends BaseViewManagerDelegate {
public RNMBXViewportManagerDelegate(U viewManager) {
super(viewManager);
}
diff --git a/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt b/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt
index fee7f22..194e630 100644
--- a/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt
+++ b/node_modules/@rnmapbox/maps/android/src/main/rn-compat/rn75/com/rnmapbox/rnmbx/rncompat/ReadableMap.kt
@@ -1,7 +1,7 @@
package com.rnmapbox.rnmbx.rncompat.readable_map
import com.facebook.react.bridge.ReadableMap
-fun ReadableMap.getEntryIterator(): Iterator>
+fun ReadableMap.getEntryIterator(): Iterator>
{
return this.entryIterator
}
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/babel.config.js b/node_modules/@rnmapbox/maps/babel.config.js
new file mode 100644
index 0000000..217c832
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/babel.config.js
@@ -0,0 +1,9 @@
+module.exports = {
+ presets: ['module:metro-react-native-babel-preset'],
+ plugins: [['@babel/plugin-proposal-class-properties', { loose: true }]],
+ env: {
+ production: {
+ plugins: ['transform-remove-console'],
+ },
+ },
+};
diff --git a/node_modules/@rnmapbox/maps/docs/Annotation.md b/node_modules/@rnmapbox/maps/docs/Annotation.md
new file mode 100644
index 0000000..b1a22a8
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Annotation.md
@@ -0,0 +1,131 @@
+
+
+
+
+```tsx
+import { Annotation } from '@rnmapbox/maps';
+
+Annotation
+
+```
+
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+FIX ME NO DESCRIPTION
+
+
+
+### animated
+
+```tsx
+boolean
+```
+FIX ME NO DESCRIPTION
+
+ _defaults to:_ `false`
+
+
+### animationDuration
+
+```tsx
+number
+```
+FIX ME NO DESCRIPTION
+
+ _defaults to:_ `1000`
+
+
+### animationEasingFunction
+
+```tsx
+func
+```
+FIX ME NO DESCRIPTION
+*signature:*`(x:number) => number`
+
+ _defaults to:_ `Easing.linear`
+
+
+### coordinates
+
+```tsx
+Array
+```
+_required_
+FIX ME NO DESCRIPTION
+
+
+
+### onPress
+
+```tsx
+func
+```
+FIX ME NO DESCRIPTION
+*signature:*`(event:OnPressEvent) => void`
+
+
+
+### children
+
+```tsx
+ReactElement | ReactElement[]
+```
+_required_
+FIX ME NO DESCRIPTION
+
+
+
+### style
+
+```tsx
+object
+```
+FIX ME NO DESCRIPTION
+
+
+
+### icon
+
+```tsx
+string | number | object
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+## methods
+### onPress(event)
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `event` | `OnPressEvent` | `Yes` | undefined |
+
+
+### symbolStyle()
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Annotations.md b/node_modules/@rnmapbox/maps/docs/Annotations.md
new file mode 100644
index 0000000..45d2029
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Annotations.md
@@ -0,0 +1,20 @@
+# Annotations Comparison
+
+Comparison of various annotations available in React native mapbox:
+
+| Feature | SymbolLayer | PointAnnotation | MarkerView | CircleLayer |
+|----------------------------|---------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------|
+| **Can use Images** | ✓ | | | |
+| **RN Views as Children** | iOS: Static | Static in v10, _was interactive on iOS before v10_ | Interactive | |
+| **Interactions** | Click | Click, Drag, Callout | Supports full interactivity in the sense that inside MarkerViews one can place any RN View, which can be interacted with. Not to be misunderstood with drag n drop interactivity. | Click |
+| **Control z-index** | ✓ | All rendered within a single layer moreGet the LayerID with `getAnnotationsLayerID('PointAnnotations')` to place other layers above or below. | Always on top | ✓ |
+| **Clustering** | ✓ | | | ✓ |
+| **Style with Expressions** | ✓ | | | ✓ |
+| **v10 Implementation** | [SymbolLayer](https://docs.mapbox.com/ios/maps/api/10.8.1/Structs/SymbolLayer.html) | [PointAnnotation](https://docs.mapbox.com/ios/maps/api/10.8.1/Classes/PointAnnotationManager.html) | [ViewAnnotations](https://docs.mapbox.com/ios/maps/api/10.8.1/Classes/ViewAnnotationManager.html) | [CircleLayer](https://docs.mapbox.com/ios/maps/api/10.8.1/Structs/CircleLayer.html) |
+| **iOS Implementation** | [MGLStyleSymbolLayer](https://docs.mapbox.com/ios/api/maps/5.8.0/Classes/MGLSymbolStyleLayer.html) | [MGLAnnotationView](https://docs.mapbox.com/ios/api/maps/5.8.0/Classes/MGLAnnotationView.html) | [MGLAnnotationView](https://docs.mapbox.com/ios/api/maps/5.8.0/Classes/MGLAnnotationView.html) | [MGLCircleStyleLayer](https://docs.mapbox.com/ios/api/maps/5.8.0/Classes/MGLCircleStyleLayer.html) |
+| **Android Implementation** | [SymbolLayer](https://docs.mapbox.com/android/api/map-sdk/9.0.0/com/mapbox/mapboxsdk/style/layers/SymbolLayer.html) | [annotation.Symbol](https://docs.mapbox.com/android/api/plugins/annotation/0.8.0/com/mapbox/mapboxsdk/plugins/annotation/Symbol.html) | [annotation.Marker](https://docs.mapbox.com/android/api/plugins/markerview/0.4.0/com/mapbox/mapboxsdk/plugins/markerview/MarkerView.html) | [CircleLayer](https://docs.mapbox.com/android/api/map-sdk/9.0.0/com/mapbox/mapboxsdk/style/layers/CircleLayer.html) |
+
+Related links:
+
+- iOS [markers and annotations](https://docs.mapbox.com/ios/maps/overview/markers-and-annotations/)
+- Android [annotation plugin](https://docs.mapbox.com/android/plugins/overview/annotation/)
diff --git a/node_modules/@rnmapbox/maps/docs/Atmosphere.md b/node_modules/@rnmapbox/maps/docs/Atmosphere.md
new file mode 100644
index 0000000..08d6639
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Atmosphere.md
@@ -0,0 +1,293 @@
+
+
+ Mapbox spec: [atmosphere](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#atmosphere)
+
+
+```tsx
+import { Atmosphere } from '@rnmapbox/maps';
+
+Atmosphere
+
+```
+
+
+## props
+
+
+### style
+
+```tsx
+AtmosphereLayerStyleProps
+```
+_required_
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+
+## styles
+
+* range
+* color
+* highColor
+* spaceColor
+* horizonBlend
+* starIntensity
+
+___
+
+### range
+Name: `range`
+
+Mapbox spec: [range](https://docs.mapbox.com/style-spec/reference/layers/#range)
+
+#### Description
+The start and end distance range in which fog fades from fully transparent to fully opaque. The distance to the point at the center of the map is defined as zero, so that negative range values are closer to the camera, and positive values are farther away.
+
+#### Type
+`array`
+#### Default Value
+`[0.5,10]`
+
+#### Minimum
+`-20`
+
+
+#### Maximum
+`20`
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### rangeTransition
+Name: `rangeTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s range property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### color
+Name: `color`
+
+Mapbox spec: [color](https://docs.mapbox.com/style-spec/reference/layers/#color)
+
+#### Description
+The color of the atmosphere region immediately below the horizon and within the `range` and above the horizon and within `horizonBlend`. Using opacity is recommended only for smoothly transitioning fog on/off as anything less than 100% opacity results in more tiles loaded and drawn.
+
+#### Type
+`color`
+#### Default Value
+`#ffffff`
+
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### colorTransition
+Name: `colorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s color property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### highColor
+Name: `highColor`
+
+Mapbox spec: [high-color](https://docs.mapbox.com/style-spec/reference/layers/#high-color)
+
+#### Description
+The color of the atmosphere region above the horizon, `highColor` extends further above the horizon than the `color` property and its spread can be controlled with `horizonBlend`. The opacity can be set to `0` to remove the high atmosphere color contribution.
+
+#### Type
+`color`
+#### Default Value
+`#245cdf`
+
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### highColorTransition
+Name: `highColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s highColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### spaceColor
+Name: `spaceColor`
+
+Mapbox spec: [space-color](https://docs.mapbox.com/style-spec/reference/layers/#space-color)
+
+#### Description
+The color of the region above the horizon and after the end of the `horizonBlend` contribution. The opacity can be set to `0` to have a transparent background.
+
+#### Type
+`color`
+#### Default Value
+`interpolate,linear,zoom,4,#010b19,7,#367ab9`
+
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### spaceColorTransition
+Name: `spaceColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s spaceColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### horizonBlend
+Name: `horizonBlend`
+
+Mapbox spec: [horizon-blend](https://docs.mapbox.com/style-spec/reference/layers/#horizon-blend)
+
+#### Description
+Horizon blend applies a smooth fade from the color of the atmosphere to the color of space. A value of zero leaves a sharp transition from atmosphere to space. Increasing the value blends the color of atmosphere into increasingly high angles of the sky.
+
+#### Type
+`number`
+#### Default Value
+`interpolate,linear,zoom,4,0.2,7,0.1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### horizonBlendTransition
+Name: `horizonBlendTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s horizonBlend property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### starIntensity
+Name: `starIntensity`
+
+Mapbox spec: [star-intensity](https://docs.mapbox.com/style-spec/reference/layers/#star-intensity)
+
+#### Description
+A value controlling the star intensity where `0` will show no stars and `1` will show stars at their maximum intensity.
+
+#### Type
+`number`
+#### Default Value
+`interpolate,linear,zoom,5,0.35,6,0`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, measure-light`
+___
+
+### starIntensityTransition
+Name: `starIntensityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s starIntensity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/BackgroundLayer.md b/node_modules/@rnmapbox/maps/docs/BackgroundLayer.md
new file mode 100644
index 0000000..843f932
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/BackgroundLayer.md
@@ -0,0 +1,261 @@
+
+
+ Mapbox spec: [background](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#background)
+
+
+```tsx
+import { BackgroundLayer } from '@rnmapbox/maps';
+
+BackgroundLayer
+
+```
+
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the layer in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### style
+
+```tsx
+BackgroundLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* visibility
+* backgroundColor
+* backgroundPattern
+* backgroundOpacity
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-background-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### backgroundColor
+Name: `backgroundColor`
+
+Mapbox spec: [background-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-background-background-color)
+
+#### Description
+The color with which the background will be drawn.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Disabled By
+`backgroundPattern`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### backgroundColorTransition
+Name: `backgroundColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s backgroundColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### backgroundPattern
+Name: `backgroundPattern`
+
+Mapbox spec: [background-pattern](https://docs.mapbox.com/style-spec/reference/layers/#paint-background-background-pattern)
+
+#### Description
+Name of image in sprite to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
+
+#### Type
+`resolvedImage`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### backgroundOpacity
+Name: `backgroundOpacity`
+
+Mapbox spec: [background-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-background-background-opacity)
+
+#### Description
+The opacity at which the background will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### backgroundOpacityTransition
+Name: `backgroundOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s backgroundOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Callout.md b/node_modules/@rnmapbox/maps/docs/Callout.md
new file mode 100644
index 0000000..7596826
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Callout.md
@@ -0,0 +1,76 @@
+
+
+
+
+```tsx
+import { Callout } from '@rnmapbox/maps';
+
+Callout
+
+```
+Callout that displays information about a selected annotation near the annotation.
+
+## props
+
+
+### title
+
+```tsx
+string
+```
+_required_
+String that gets displayed in the default callout.
+
+
+
+### style
+
+```tsx
+ViewStyle
+```
+Style property for the Animated.View wrapper, apply animations to this
+
+
+
+### containerStyle
+
+```tsx
+ViewStyle
+```
+Style property for the native RNMBXCallout container, set at your own risk.
+
+
+
+### contentStyle
+
+```tsx
+ViewStyle
+```
+Style property for the content bubble.
+
+
+
+### tipStyle
+
+```tsx
+ViewStyle
+```
+Style property for the triangle tip under the content.
+
+
+
+### textStyle
+
+```tsx
+ViewStyle
+```
+Style property for the title in the content bubble.
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Camera.md b/node_modules/@rnmapbox/maps/docs/Camera.md
new file mode 100644
index 0000000..8c8a017
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Camera.md
@@ -0,0 +1,350 @@
+
+
+
+
+```tsx
+import { Camera } from '@rnmapbox/maps';
+
+Camera
+
+```
+Controls the perspective from which the user sees the map.
+
+To use imperative methods, pass in a ref object:
+
+```tsx
+const camera = useRef<Camera>(null);
+
+useEffect(() => {
+ camera.current?.setCamera({
+ centerCoordinate: [lon, lat],
+ });
+}, []);
+
+return (
+ <Camera ref={camera} />
+);
+```
+
+## props
+
+
+### type
+
+```tsx
+literal
+```
+Allows static check of the data type. For internal use only.
+
+
+
+### centerCoordinate
+
+```tsx
+Position
+```
+The location on which the map should center.
+
+
+
+### bounds
+
+```tsx
+intersection
+```
+The corners of a box around which the map should bound. Contains padding props for backwards
+compatibility; the root `padding` prop should be used instead.
+
+
+
+### heading
+
+```tsx
+number
+```
+The heading (orientation) of the map.
+
+
+
+### pitch
+
+```tsx
+number
+```
+The pitch of the map.
+
+
+
+### zoomLevel
+
+```tsx
+number
+```
+The zoom level of the map.
+
+
+
+### padding
+
+```tsx
+type Padding = {
+ paddingLeft: number; /* Left padding in points */
+ paddingRight: number; /* Right padding in points */
+ paddingTop: number; /* Top padding in points */
+ paddingBottom: number; /* Bottom padding in points */
+}
+```
+The viewport padding in points.
+
+
+
+### animationDuration
+
+```tsx
+number
+```
+The duration the map takes to animate to a new configuration.
+
+
+
+### animationMode
+
+```tsx
+| 'flyTo'
+| 'easeTo'
+| 'linearTo'
+| 'moveTo'
+| 'none'
+```
+The easing or path the camera uses to animate to a new configuration.
+
+[Camera Animation](../examples/V10/CameraAnimation)
+
+### followUserLocation
+
+```tsx
+boolean
+```
+Whether the map orientation follows the user location.
+
+
+
+### followUserMode
+
+```tsx
+UserTrackingMode
+```
+The mode used to track the user location on the map.
+
+
+
+### followZoomLevel
+
+```tsx
+number
+```
+The zoom level used when following the user location.
+
+[Show Map](../examples/Map/ShowMap)
+
+### followPitch
+
+```tsx
+number
+```
+The pitch used when following the user location.
+
+
+
+### followHeading
+
+```tsx
+number
+```
+The heading used when following the user location.
+
+
+
+### followPadding
+
+```tsx
+Partial
+```
+The padding used to position the user location when following.
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The lowest allowed zoom level.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The highest allowed zoom level.
+
+
+
+### maxBounds
+
+```tsx
+type MaxBounds = {
+ ne: Position; /* FIX ME NO DESCRIPTION */
+ sw: Position; /* FIX ME NO DESCRIPTION */
+}
+```
+The corners of a box defining the limits of where the camera can pan or zoom.
+
+
+
+### defaultSettings
+
+```tsx
+type DefaultSettings = {
+ type: literal; /* Allows static check of the data type. For internal use only. */
+ centerCoordinate: Position; /* The location on which the map should center. */
+ bounds: intersection; /* The corners of a box around which the map should bound. Contains padding props for backwards
+compatibility; the root `padding` prop should be used instead. */
+ heading: number; /* The heading (orientation) of the map. */
+ pitch: number; /* The pitch of the map. */
+ zoomLevel: number; /* The zoom level of the map. */
+ padding: signature; /* The viewport padding in points. */
+ animationDuration: number; /* The duration the map takes to animate to a new configuration. */
+ animationMode: union; /* The easing or path the camera uses to animate to a new configuration. */
+}
+```
+The configuration that the camera falls back on, if no other values are specified.
+
+
+
+### allowUpdates
+
+```tsx
+boolean
+```
+Whether the camera should send any configuration to the native module. Prevents unnecessary tile
+fetching and improves performance when the map is not visible. Defaults to `true`.
+
+
+
+### triggerKey
+
+```tsx
+string | number
+```
+Any arbitrary primitive value that, when changed, causes the camera to retry moving to its target
+configuration. (Not yet implemented.)
+
+
+
+### onUserTrackingModeChange
+
+```tsx
+func
+```
+Executes when user tracking mode changes.
+**DEPRECATED** use Viewport#onStatusChanged instead.
+*signature:*`(event:MapboxGLEvent) => void`
+
+
+
+
+
+
+
+
+## methods
+### setCamera()
+
+Sets any camera properties, with default fallbacks if unspecified.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+camera.current?.setCamera({
+ centerCoordinate: [lon, lat],
+});
+```
+
+
+### fitBounds()
+
+Set the camera position to enclose the provided bounds, with optional padding and duration.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+camera.fitBounds([lon, lat], [lon, lat]);
+camera.fitBounds([lon, lat], [lon, lat], [20, 0], 1000);
+```
+
+
+### flyTo()
+
+Sets the camera to center around the provided coordinate using a realistic 'travel' animation, with optional duration.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+camera.flyTo([lon, lat]);
+camera.flyTo([lon, lat], 12000);
+```
+
+
+### moveTo()
+
+Sets the camera to center around the provided coordinate, with optional duration.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+camera.moveTo([lon, lat], 200);
+camera.moveTo([lon, lat]);
+```
+
+
+### zoomTo()
+
+Zooms the camera to the provided level, with optional duration.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+camera.zoomTo(16);
+camera.zoomTo(16, 100);
+```
+
+
+[Fit](../examples/Camera/Fit)
diff --git a/node_modules/@rnmapbox/maps/docs/CircleLayer.md b/node_modules/@rnmapbox/maps/docs/CircleLayer.md
new file mode 100644
index 0000000..74cb224
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/CircleLayer.md
@@ -0,0 +1,608 @@
+
+
+ Mapbox spec: [circle](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#circle)
+
+
+```tsx
+import { CircleLayer } from '@rnmapbox/maps';
+
+CircleLayer
+
+```
+CircleLayer is a style layer that renders one or more filled circles on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+CircleLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* circleSortKey
+* visibility
+* circleRadius
+* circleColor
+* circleBlur
+* circleOpacity
+* circleTranslate
+* circleTranslateAnchor
+* circlePitchScale
+* circlePitchAlignment
+* circleStrokeWidth
+* circleStrokeColor
+* circleStrokeOpacity
+
+___
+
+### circleSortKey
+Name: `circleSortKey`
+
+Mapbox spec: [circle-sort-key](https://docs.mapbox.com/style-spec/reference/layers/#layout-circle-circle-sort-key)
+
+#### Description
+Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
+
+#### Type
+`number`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-circle-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### circleRadius
+Name: `circleRadius`
+
+Mapbox spec: [circle-radius](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-radius)
+
+#### Description
+Circle radius.
+
+#### Type
+`number`
+#### Default Value
+`5`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleRadiusTransition
+Name: `circleRadiusTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleRadius property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleColor
+Name: `circleColor`
+
+Mapbox spec: [circle-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-color)
+
+#### Description
+The fill color of the circle.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleColorTransition
+Name: `circleColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleBlur
+Name: `circleBlur`
+
+Mapbox spec: [circle-blur](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-blur)
+
+#### Description
+Amount to blur the circle. 1 blurs the circle such that only the centerpoint is full opacity.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleBlurTransition
+Name: `circleBlurTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleBlur property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleOpacity
+Name: `circleOpacity`
+
+Mapbox spec: [circle-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-opacity)
+
+#### Description
+The opacity at which the circle will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleOpacityTransition
+Name: `circleOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleTranslate
+Name: `circleTranslate`
+
+Mapbox spec: [circle-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-translate)
+
+#### Description
+The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### circleTranslateTransition
+Name: `circleTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleTranslateAnchor
+Name: `circleTranslateAnchor`
+
+Mapbox spec: [circle-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-translate-anchor)
+
+#### Description
+Controls the frame of reference for `circleTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - The circle is translated relative to the map.
+**viewport** - The circle is translated relative to the viewport.
+
+
+#### Requires
+`circleTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### circlePitchScale
+Name: `circlePitchScale`
+
+Mapbox spec: [circle-pitch-scale](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-pitch-scale)
+
+#### Description
+Controls the scaling behavior of the circle when the map is pitched.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - Circles are scaled according to their apparent distance to the camera.
+**viewport** - Circles are not scaled.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### circlePitchAlignment
+Name: `circlePitchAlignment`
+
+Mapbox spec: [circle-pitch-alignment](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-pitch-alignment)
+
+#### Description
+Orientation of circle when map is pitched.
+
+#### Type
+`enum`
+#### Default Value
+`viewport`
+
+#### Supported Values
+**map** - The circle is aligned to the plane of the map.
+**viewport** - The circle is aligned to the plane of the viewport.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### circleStrokeWidth
+Name: `circleStrokeWidth`
+
+Mapbox spec: [circle-stroke-width](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-stroke-width)
+
+#### Description
+The width of the circle's stroke. Strokes are placed outside of the `circleRadius`.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleStrokeWidthTransition
+Name: `circleStrokeWidthTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleStrokeWidth property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleStrokeColor
+Name: `circleStrokeColor`
+
+Mapbox spec: [circle-stroke-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-stroke-color)
+
+#### Description
+The stroke color of the circle.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleStrokeColorTransition
+Name: `circleStrokeColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleStrokeColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### circleStrokeOpacity
+Name: `circleStrokeOpacity`
+
+Mapbox spec: [circle-stroke-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-circle-circle-stroke-opacity)
+
+#### Description
+The opacity of the circle's stroke.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### circleStrokeOpacityTransition
+Name: `circleStrokeOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s circleStrokeOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/CustomHttpHeaders.md b/node_modules/@rnmapbox/maps/docs/CustomHttpHeaders.md
new file mode 100644
index 0000000..693c751
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/CustomHttpHeaders.md
@@ -0,0 +1,94 @@
+# Custom http headers
+
+Custom headers are implemented using [HttpServiceFactory](https://docs.mapbox.com/ios/maps/api/10.10.1/common/Classes/MBXHttpServiceFactory.html) on iOS and android.
+
+On deprecated version (classic Mapbox GL iOS) it's implemented using [Method swizzling](https://en.wikipedia.org/wiki/Monkey_patch) is done on the `[NSMutableURLRequest requestWithURL:]` to allow adding headers during runtime.
+
+## Usage
+
+## Sending custom http headers with the tile requests
+
+You can configure sending of custom http headers to your tile server. This is to support custom authentication or custom metadata which can't be included in the url.
+
+You can add and remove headers at runtime.
+
+### To add a header
+
+```javascript
+ MapboxGL.addCustomHeader('Authorization', '{auth header}');
+```
+
+### To remove a header
+
+```javascript
+ MapboxGL.removeCustomHeader('Authorization');
+```
+
+### Working example
+
+```tsx
+export default class HelloWorldApp extends Component {
+ componentDidMount() {
+ MapboxGL.addCustomHeader('Authorization', '{auth header}');
+ }
+
+ render() {
+ MapboxGL.addCustomHeader('X-Some-Header', 'my-value');
+ return (
+
+
+
+
+
+ );
+ }
+}
+```
+
+
+
+## Prerequisites
+
+### Android
+
+None
+
+### iOS with Mapbox-v10
+
+None
+
+### iOS with Mapbox GL or Mapblibre
+
+To enable this on iOS you need to call `[[MGLCustomHeaders sharedInstance] initHeaders]` pretty early in the lifecycle of the application. This will swizzle the custom method.
+Suggested location is `[AppDelegate application: didFinishLaunchingWithOptions:]`
+
+### Working example (AppDelegate.m)
+
+```obj-c
+// (1) Include the header file
+#import "MGLCustomHeaders.h"
+
+@implementation AppDelegate
+
+- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
+{
+ RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
+ RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
+ moduleName:@"SampleApp"
+ initialProperties:nil];
+ // (2) Init headers, add swizzle method
+ [[MGLCustomHeaders sharedInstance] initHeaders];
+ // (3*) Optionally you can add some global headers here
+ [[MGLCustomHeaders sharedInstance] addHeader:@"IP" forHeaderName:@"X-For-Real"];
+
+ ...
+ return YES;
+}
+
+...
+
+@end
+```
+
diff --git a/node_modules/@rnmapbox/maps/docs/CustomLocationProvider.md b/node_modules/@rnmapbox/maps/docs/CustomLocationProvider.md
new file mode 100644
index 0000000..27ee1e3
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/CustomLocationProvider.md
@@ -0,0 +1,39 @@
+
+
+
+
+```tsx
+import { CustomLocationProvider } from '@rnmapbox/maps';
+
+CustomLocationProvider
+
+```
+
+
+## props
+
+
+### coordinate
+
+```tsx
+Position
+```
+longitude and latitude to use for the custom location provider that gets applied to the NativeUserLocation
+
+
+
+### heading
+
+```tsx
+number
+```
+heading/bearing to use for custom location provider that gets applied to the NativeUserLocation
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/FillExtrusionLayer.md b/node_modules/@rnmapbox/maps/docs/FillExtrusionLayer.md
new file mode 100644
index 0000000..b1c23c4
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/FillExtrusionLayer.md
@@ -0,0 +1,474 @@
+
+
+ Mapbox spec: [fill-extrusion](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#fill-extrusion)
+
+
+```tsx
+import { FillExtrusionLayer } from '@rnmapbox/maps';
+
+FillExtrusionLayer
+
+```
+FillExtrusionLayer is a style layer that renders one or more 3D extruded polygons on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the layer in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+_required_
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+_required_
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### style
+
+```tsx
+FillExtrusionLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* visibility
+* fillExtrusionOpacity
+* fillExtrusionColor
+* fillExtrusionTranslate
+* fillExtrusionTranslateAnchor
+* fillExtrusionPattern
+* fillExtrusionHeight
+* fillExtrusionBase
+* fillExtrusionVerticalGradient
+* fillExtrusionRoundedRoof
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-fill-extrusion-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### fillExtrusionOpacity
+Name: `fillExtrusionOpacity`
+
+Mapbox spec: [fill-extrusion-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-opacity)
+
+#### Description
+The opacity of the entire fill extrusion layer. This is rendered on a perLayer, not perFeature, basis, and dataDriven styling is not available.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### fillExtrusionOpacityTransition
+Name: `fillExtrusionOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillExtrusionOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillExtrusionColor
+Name: `fillExtrusionColor`
+
+Mapbox spec: [fill-extrusion-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-color)
+
+#### Description
+The base color of the extruded fill. The extrusion's surfaces will be shaded differently based on this color in combination with the root `light` settings. If this color is specified as `rgba` with an alpha component, the alpha component will be ignored; use `fillExtrusionOpacity` to set layer opacity.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Disabled By
+`fillExtrusionPattern`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### fillExtrusionColorTransition
+Name: `fillExtrusionColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillExtrusionColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillExtrusionTranslate
+Name: `fillExtrusionTranslate`
+
+Mapbox spec: [fill-extrusion-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-translate)
+
+#### Description
+The geometry's offset. Values are [x, y] where negatives indicate left and up (on the flat plane), respectively.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### fillExtrusionTranslateTransition
+Name: `fillExtrusionTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillExtrusionTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillExtrusionTranslateAnchor
+Name: `fillExtrusionTranslateAnchor`
+
+Mapbox spec: [fill-extrusion-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-translate-anchor)
+
+#### Description
+Controls the frame of reference for `fillExtrusionTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - The fill extrusion is translated relative to the map.
+**viewport** - The fill extrusion is translated relative to the viewport.
+
+
+#### Requires
+`fillExtrusionTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### fillExtrusionPattern
+Name: `fillExtrusionPattern`
+
+Mapbox spec: [fill-extrusion-pattern](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-pattern)
+
+#### Description
+Name of image in sprite to use for drawing images on extruded fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
+
+#### Type
+`resolvedImage`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### fillExtrusionHeight
+Name: `fillExtrusionHeight`
+
+Mapbox spec: [fill-extrusion-height](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-height)
+
+#### Description
+The height with which to extrude this layer.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`meters`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state`
+___
+
+### fillExtrusionHeightTransition
+Name: `fillExtrusionHeightTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillExtrusionHeight property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillExtrusionBase
+Name: `fillExtrusionBase`
+
+Mapbox spec: [fill-extrusion-base](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-base)
+
+#### Description
+The height with which to extrude the base of this layer. Must be less than or equal to `fillExtrusionHeight`.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`meters`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`fillExtrusionHeight`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state`
+___
+
+### fillExtrusionBaseTransition
+Name: `fillExtrusionBaseTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillExtrusionBase property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillExtrusionVerticalGradient
+Name: `fillExtrusionVerticalGradient`
+
+Mapbox spec: [fill-extrusion-vertical-gradient](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-vertical-gradient)
+
+#### Description
+Whether to apply a vertical gradient to the sides of a fillExtrusion layer. If true, sides will be shaded slightly darker farther down.
+
+#### Type
+`boolean`
+#### Default Value
+`true`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### fillExtrusionRoundedRoof
+Name: `fillExtrusionRoundedRoof`
+
+Mapbox spec: [fill-extrusion-rounded-roof](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-extrusion-fill-extrusion-rounded-roof)
+
+#### Description
+Indicates whether top edges should be rounded when fillExtrusionEdgeRadius has a value greater than 0. If false, rounded edges are only applied to the sides. Default is true.
+
+#### Type
+`boolean`
+#### Default Value
+`true`
+
+
+#### Requires
+`fillExtrusionEdgeRadius`
+
+#### Expression
+
+Parameters: `zoom`
+
diff --git a/node_modules/@rnmapbox/maps/docs/FillLayer.md b/node_modules/@rnmapbox/maps/docs/FillLayer.md
new file mode 100644
index 0000000..c8e0445
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/FillLayer.md
@@ -0,0 +1,424 @@
+
+
+ Mapbox spec: [fill](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#fill)
+
+
+```tsx
+import { FillLayer } from '@rnmapbox/maps';
+
+FillLayer
+
+```
+FillLayer is a style layer that renders one or more filled (and optionally stroked) polygons on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+[Change Layer Color](../examples/Map/ChangeLayerColor), [Show and hide layer](../examples/Map/ShowAndHideLayer)
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+FillLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* fillSortKey
+* visibility
+* fillAntialias
+* fillOpacity
+* fillColor
+* fillOutlineColor
+* fillTranslate
+* fillTranslateAnchor
+* fillPattern
+
+___
+
+### fillSortKey
+Name: `fillSortKey`
+
+Mapbox spec: [fill-sort-key](https://docs.mapbox.com/style-spec/reference/layers/#layout-fill-fill-sort-key)
+
+#### Description
+Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
+
+#### Type
+`number`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-fill-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### fillAntialias
+Name: `fillAntialias`
+
+Mapbox spec: [fill-antialias](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-antialias)
+
+#### Description
+Whether or not the fill should be antialiased.
+
+#### Type
+`boolean`
+#### Default Value
+`true`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### fillOpacity
+Name: `fillOpacity`
+
+Mapbox spec: [fill-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-opacity)
+
+#### Description
+The opacity of the entire fill layer. In contrast to the `fillColor`, this value will also affect the 1px stroke around the fill, if the stroke is used.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### fillOpacityTransition
+Name: `fillOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillColor
+Name: `fillColor`
+
+Mapbox spec: [fill-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-color)
+
+#### Description
+The color of the filled part of this layer. This color can be specified as `rgba` with an alpha component and the color's opacity will not affect the opacity of the 1px stroke, if it is used.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Disabled By
+`fillPattern`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### fillColorTransition
+Name: `fillColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillOutlineColor
+Name: `fillOutlineColor`
+
+Mapbox spec: [fill-outline-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-outline-color)
+
+#### Description
+The outline color of the fill. Matches the value of `fillColor` if unspecified.
+
+#### Type
+`color`
+
+
+#### Disabled By
+`fillPattern`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### fillOutlineColorTransition
+Name: `fillOutlineColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillOutlineColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillTranslate
+Name: `fillTranslate`
+
+Mapbox spec: [fill-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-translate)
+
+#### Description
+The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### fillTranslateTransition
+Name: `fillTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s fillTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### fillTranslateAnchor
+Name: `fillTranslateAnchor`
+
+Mapbox spec: [fill-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-translate-anchor)
+
+#### Description
+Controls the frame of reference for `fillTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - The fill is translated relative to the map.
+**viewport** - The fill is translated relative to the viewport.
+
+
+#### Requires
+`fillTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### fillPattern
+Name: `fillPattern`
+
+Mapbox spec: [fill-pattern](https://docs.mapbox.com/style-spec/reference/layers/#paint-fill-fill-pattern)
+
+#### Description
+Name of image in sprite to use for drawing image fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
+
+#### Type
+`resolvedImage`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
diff --git a/node_modules/@rnmapbox/maps/docs/GettingStarted.md b/node_modules/@rnmapbox/maps/docs/GettingStarted.md
new file mode 100644
index 0000000..04ee432
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/GettingStarted.md
@@ -0,0 +1,91 @@
+# Getting Started
+
+Congratulations, you successfully installed rnmapbox/maps! 🎉
+Where to go from here?
+You can head straight to [examples](/example) folder if you want to jump into the deep end.
+However, if you prefer an easier ramp-up, then make sure to stick around and check out the guides below.
+
+## Installation
+
+Please follow our install guides for the platforms you're interested in (ios, android, expo): https://rnmapbox.github.io/docs/install
+
+## Setting your accessToken
+
+In order to work, mapbox requires you to create an accessToken and set it in your app.
+If you haven't created one yet, make sure to sign up for an account [here](https://www.mapbox.com/signup/)
+You can create and manage your access tokens on your [Mapbox Account page](https://www.mapbox.com/account/)
+Once you have your accessToken, set it like this
+
+```js
+import Mapbox from "@rnmapbox/maps";
+
+Mapbox.setAccessToken("");
+```
+
+## Setting connection status [Android only]
+
+If you are hosting styles and sources on localhost, you might need to set the connection status manually for Mapbox to be able to use them. See [mapbox/mapbox-gl-native#12819](https://github.com/mapbox/mapbox-gl-native/issues/12819).
+
+Manually sets the connectivity state of the app, bypassing any checks to the ConnectivityManager. Set to `true` for connected, `false` for disconnected, and `null` for ConnectivityManager to determine.
+
+```js
+import Mapbox from "@rnmapbox/maps";
+
+Mapbox.setConnected(true);
+```
+
+## Disabling Telemetry
+
+By default mapbox collects telemetry.
+If you would like to programmatically disable this within your app add the code below.
+
+```js
+ componentDidMount() {
+ Mapbox.setTelemetryEnabled(false);
+ }
+```
+
+For more information on mapbox and telemetry: [https://www.mapbox.com/telemetry](https://www.mapbox.com/telemetry)
+
+## Show a map
+
+```js
+import React, { Component } from "react";
+import { StyleSheet, View } from "react-native";
+import Mapbox, {MapView} from "@rnmapbox/maps";
+
+Mapbox.setAccessToken("");
+
+const styles = StyleSheet.create({
+ page: {
+ flex: 1,
+ justifyContent: "center",
+ alignItems: "center",
+ backgroundColor: "#F5FCFF"
+ },
+ container: {
+ height: 300,
+ width: 300,
+ backgroundColor: "tomato"
+ },
+ map: {
+ flex: 1
+ }
+});
+
+export default class App extends Component {
+ componentDidMount() {
+ Mapbox.setTelemetryEnabled(false);
+ }
+
+ render() {
+ return (
+
+
+
+
+
+ );
+ }
+}
+```
diff --git a/node_modules/@rnmapbox/maps/docs/HeadingIndicator.md b/node_modules/@rnmapbox/maps/docs/HeadingIndicator.md
new file mode 100644
index 0000000..d6eb983
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/HeadingIndicator.md
@@ -0,0 +1,30 @@
+
+
+
+
+```tsx
+import { HeadingIndicator } from '@rnmapbox/maps';
+
+HeadingIndicator
+
+```
+
+
+## props
+
+
+### heading
+
+```tsx
+number
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/HeatmapLayer.md b/node_modules/@rnmapbox/maps/docs/HeatmapLayer.md
new file mode 100644
index 0000000..e0bf82e
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/HeatmapLayer.md
@@ -0,0 +1,344 @@
+
+
+ Mapbox spec: [heatmap](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#heatmap)
+
+
+```tsx
+import { HeatmapLayer } from '@rnmapbox/maps';
+
+HeatmapLayer
+
+```
+HeatmapLayer is a style layer that renders one or more filled circles on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+HeatmapLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* visibility
+* heatmapRadius
+* heatmapWeight
+* heatmapIntensity
+* heatmapColor
+* heatmapOpacity
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-heatmap-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### heatmapRadius
+Name: `heatmapRadius`
+
+Mapbox spec: [heatmap-radius](https://docs.mapbox.com/style-spec/reference/layers/#paint-heatmap-heatmap-radius)
+
+#### Description
+Radius of influence of one heatmap point in pixels. Increasing the value makes the heatmap smoother, but less detailed. `queryRenderedFeatures` on heatmap layers will return points within this radius.
+
+#### Type
+`number`
+#### Default Value
+`30`
+
+#### Units
+`pixels`
+
+#### Minimum
+`1`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### heatmapRadiusTransition
+Name: `heatmapRadiusTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s heatmapRadius property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### heatmapWeight
+Name: `heatmapWeight`
+
+Mapbox spec: [heatmap-weight](https://docs.mapbox.com/style-spec/reference/layers/#paint-heatmap-heatmap-weight)
+
+#### Description
+A measure of how much an individual point contributes to the heatmap. A value of 10 would be equivalent to having 10 points of weight 1 in the same spot. Especially useful when combined with clustering.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+
+___
+
+### heatmapIntensity
+Name: `heatmapIntensity`
+
+Mapbox spec: [heatmap-intensity](https://docs.mapbox.com/style-spec/reference/layers/#paint-heatmap-heatmap-intensity)
+
+#### Description
+Similar to `heatmapWeight` but controls the intensity of the heatmap globally. Primarily used for adjusting the heatmap based on zoom level.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### heatmapIntensityTransition
+Name: `heatmapIntensityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s heatmapIntensity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### heatmapColor
+Name: `heatmapColor`
+
+Mapbox spec: [heatmap-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-heatmap-heatmap-color)
+
+#### Description
+Defines the color of each pixel based on its density value in a heatmap. Should be an expression that uses `["heatmapDensity"]` as input.
+
+#### Type
+`color`
+#### Default Value
+`interpolate,linear,heatmap-density,0,rgba(0, 0, 255, 0),0.1,royalblue,0.3,cyan,0.5,lime,0.7,yellow,1,red`
+
+
+#### Expression
+
+Parameters: `heatmap-density`
+
+___
+
+### heatmapOpacity
+Name: `heatmapOpacity`
+
+Mapbox spec: [heatmap-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-heatmap-heatmap-opacity)
+
+#### Description
+The global opacity at which the heatmap layer will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### heatmapOpacityTransition
+Name: `heatmapOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s heatmapOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Image.md b/node_modules/@rnmapbox/maps/docs/Image.md
new file mode 100644
index 0000000..64fab69
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Image.md
@@ -0,0 +1,99 @@
+
+
+
+
+```tsx
+import { Image } from '@rnmapbox/maps';
+
+Image
+
+```
+
+
+## props
+
+
+### name
+
+```tsx
+string
+```
+_required_
+ID of the image
+
+
+
+### sdf
+
+```tsx
+boolean
+```
+Make image an sdf optional - see [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/)
+
+
+
+### stretchX
+
+```tsx
+Array
+```
+An array of two-element arrays, consisting of two numbers that represent, the from position and the to position of areas that can be stretched horizontally.
+
+
+
+### stretchY
+
+```tsx
+Array
+```
+An array of two-element arrays, consisting of two numbers that represent, the from position and the to position of areas that can be stretched vertically.
+
+
+
+### content
+
+```tsx
+tuple
+```
+An array of four numbers, with the first two specifying the left, top
+corner, and the last two specifying the right, bottom corner. If present, and if the
+icon uses icon-text-fit, the symbol's text will be fit inside the content box.
+
+
+
+### scale
+
+```tsx
+number
+```
+Scale factor for the image.
+
+
+
+### children
+
+```tsx
+ReactElement
+```
+_required_
+Single react native view rendering the image
+
+
+
+
+
+
+
+
+## methods
+### refresh()
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/ImageSource.md b/node_modules/@rnmapbox/maps/docs/ImageSource.md
new file mode 100644
index 0000000..8fcaaba
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/ImageSource.md
@@ -0,0 +1,69 @@
+
+
+
+
+```tsx
+import { ImageSource } from '@rnmapbox/maps';
+
+ImageSource
+
+```
+ImageSource is a content source that is used for a georeferenced raster image to be shown on the map.
+The georeferenced image scales and rotates as the user zooms and rotates the map
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing source in the style. Does not create a new source.
+
+
+
+### url
+
+```tsx
+number | string
+```
+An HTTP(S) URL, absolute file URL, or local file URL to the source image.
+Gifs are currently not supported.
+
+
+
+### coordinates
+
+```tsx
+tuple
+```
+The top left, top right, bottom right, and bottom left coordinates for the image.
+
+
+
+### children
+
+```tsx
+React.ReactElement | React.ReactElement[]
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Images.md b/node_modules/@rnmapbox/maps/docs/Images.md
new file mode 100644
index 0000000..4936a8d
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Images.md
@@ -0,0 +1,65 @@
+
+
+
+
+```tsx
+import { Images } from '@rnmapbox/maps';
+
+Images
+
+```
+Images defines the images used in Symbol etc. layers.
+
+## props
+
+
+### images
+
+```tsx
+type Images = {
+ [object Object]: union; /* FIX ME NO DESCRIPTION */
+}
+```
+Specifies the external images in key-value pairs required for the shape source.
+Keys are names - see iconImage expressions, values can be either urls-s objects
+with format `{uri: 'http://...'}` or `require('image.png')` or `import 'image.png'`
+
+
+
+### nativeAssetImages
+
+```tsx
+Array
+```
+If you have an asset under Image.xcassets on iOS and the drawables directory on android
+you can specify an array of string names with assets as the key `['pin']`.
+Additionally object with keys sdf, and strechX, strechY is supported for [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/)
+
+[Shape Source Icons](../examples/SymbolCircleLayer/ShapeSourceIcon)
+
+### onImageMissing
+
+```tsx
+func
+```
+Gets called when a Layer is trying to render an image whose key is not present in
+any of the `Images` component of the Map.
+*signature:*`(imageKey:string) => void`
+
+[Shape Source Icons](../examples/SymbolCircleLayer/ShapeSourceIcon)
+
+### children
+
+```tsx
+ReactElement | Array> | never
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Light.md b/node_modules/@rnmapbox/maps/docs/Light.md
new file mode 100644
index 0000000..49d751b
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Light.md
@@ -0,0 +1,186 @@
+
+
+ Mapbox spec: [light](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#light)
+
+
+```tsx
+import { Light } from '@rnmapbox/maps';
+
+Light
+
+```
+Light represents the light source for extruded geometries
+
+## props
+
+
+### style
+
+```tsx
+LightLayerStyleProps
+```
+_required_
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* anchor
+* position
+* color
+* intensity
+
+___
+
+### anchor
+Name: `anchor`
+
+Mapbox spec: [anchor](https://docs.mapbox.com/style-spec/reference/layers/#anchor)
+
+#### Description
+Whether extruded geometries are lit relative to the map or viewport.
+
+#### Type
+`enum`
+#### Default Value
+`viewport`
+
+#### Supported Values
+**map** - The position of the light source is aligned to the rotation of the map.
+**viewport** - The position of the light source is aligned to the rotation of the viewport.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### position
+Name: `position`
+
+Mapbox spec: [position](https://docs.mapbox.com/style-spec/reference/layers/#position)
+
+#### Description
+Position of the light source relative to lit (extruded) geometries, in [r radial coordinate, a azimuthal angle, p polar angle] where r indicates the distance from the center of the base of an object to its light, a indicates the position of the light relative to 0° (0° when `light.anchor` is set to `viewport` corresponds to the top of the viewport, or 0° when `light.anchor` is set to `map` corresponds to due north, and degrees proceed clockwise), and p indicates the height of the light (from 0°, directly above, to 180°, directly below).
+
+#### Type
+`array`
+#### Default Value
+`[1.15,210,30]`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### positionTransition
+Name: `positionTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s position property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### color
+Name: `color`
+
+Mapbox spec: [color](https://docs.mapbox.com/style-spec/reference/layers/#color)
+
+#### Description
+Color tint for lighting extruded geometries.
+
+#### Type
+`color`
+#### Default Value
+`#ffffff`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### colorTransition
+Name: `colorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s color property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### intensity
+Name: `intensity`
+
+Mapbox spec: [intensity](https://docs.mapbox.com/style-spec/reference/layers/#intensity)
+
+#### Description
+Intensity of lighting (on a scale from 0 to 1). Higher numbers will present as more extreme contrast.
+
+#### Type
+`number`
+#### Default Value
+`0.5`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### intensityTransition
+Name: `intensityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s intensity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/LineLayer.md b/node_modules/@rnmapbox/maps/docs/LineLayer.md
new file mode 100644
index 0000000..ed8dbc6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/LineLayer.md
@@ -0,0 +1,715 @@
+
+
+ Mapbox spec: [line](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#line)
+
+
+```tsx
+import { LineLayer } from '@rnmapbox/maps';
+
+LineLayer
+
+```
+LineLayer is a style layer that renders one or more stroked polylines on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+[Show and hide layer](../examples/Map/ShowAndHideLayer)
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+LineLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* lineCap
+* lineJoin
+* lineMiterLimit
+* lineRoundLimit
+* lineSortKey
+* visibility
+* lineOpacity
+* lineColor
+* lineTranslate
+* lineTranslateAnchor
+* lineWidth
+* lineGapWidth
+* lineOffset
+* lineBlur
+* lineDasharray
+* linePattern
+* lineGradient
+* lineTrimOffset
+
+___
+
+### lineCap
+Name: `lineCap`
+
+Mapbox spec: [line-cap](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-line-cap)
+
+#### Description
+The display of line endings.
+
+#### Type
+`enum`
+#### Default Value
+`butt`
+
+#### Supported Values
+**butt** - A cap with a squared-off end which is drawn to the exact endpoint of the line.
+**round** - A cap with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line.
+**square** - A cap with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width.
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### lineJoin
+Name: `lineJoin`
+
+Mapbox spec: [line-join](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-line-join)
+
+#### Description
+The display of lines when joining.
+
+#### Type
+`enum`
+#### Default Value
+`miter`
+
+#### Supported Values
+**bevel** - A join with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width.
+**round** - A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line.
+**miter** - A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet.
+
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### lineMiterLimit
+Name: `lineMiterLimit`
+
+Mapbox spec: [line-miter-limit](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-line-miter-limit)
+
+#### Description
+Used to automatically convert miter joins to bevel joins for sharp angles.
+
+#### Type
+`number`
+#### Default Value
+`2`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### lineRoundLimit
+Name: `lineRoundLimit`
+
+Mapbox spec: [line-round-limit](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-line-round-limit)
+
+#### Description
+Used to automatically convert round joins to miter joins for shallow angles.
+
+#### Type
+`number`
+#### Default Value
+`1.05`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### lineSortKey
+Name: `lineSortKey`
+
+Mapbox spec: [line-sort-key](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-line-sort-key)
+
+#### Description
+Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.
+
+#### Type
+`number`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-line-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### lineOpacity
+Name: `lineOpacity`
+
+Mapbox spec: [line-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-opacity)
+
+#### Description
+The opacity at which the line will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineOpacityTransition
+Name: `lineOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineColor
+Name: `lineColor`
+
+Mapbox spec: [line-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-color)
+
+#### Description
+The color with which the line will be drawn.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Disabled By
+`linePattern`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineColorTransition
+Name: `lineColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineTranslate
+Name: `lineTranslate`
+
+Mapbox spec: [line-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-translate)
+
+#### Description
+The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### lineTranslateTransition
+Name: `lineTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineTranslateAnchor
+Name: `lineTranslateAnchor`
+
+Mapbox spec: [line-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-translate-anchor)
+
+#### Description
+Controls the frame of reference for `lineTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - The line is translated relative to the map.
+**viewport** - The line is translated relative to the viewport.
+
+
+#### Requires
+`lineTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### lineWidth
+Name: `lineWidth`
+
+Mapbox spec: [line-width](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-width)
+
+#### Description
+Stroke thickness.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineWidthTransition
+Name: `lineWidthTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineWidth property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineGapWidth
+Name: `lineGapWidth`
+
+Mapbox spec: [line-gap-width](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-gap-width)
+
+#### Description
+Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineGapWidthTransition
+Name: `lineGapWidthTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineGapWidth property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineOffset
+Name: `lineOffset`
+
+Mapbox spec: [line-offset](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-offset)
+
+#### Description
+The line's offset. For linear features, a positive value offsets the line to the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineOffsetTransition
+Name: `lineOffsetTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineOffset property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineBlur
+Name: `lineBlur`
+
+Mapbox spec: [line-blur](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-blur)
+
+#### Description
+Blur applied to the line, in pixels.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### lineBlurTransition
+Name: `lineBlurTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s lineBlur property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### lineDasharray
+Name: `lineDasharray`
+
+Mapbox spec: [line-dasharray](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-dasharray)
+
+#### Description
+Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to pixels, multiply the length by the current line width. Note that GeoJSON sources with `lineMetrics: true` specified won't render dashed lines to the expected scale. Also note that zoomDependent expressions will be evaluated only at integer zoom levels.
+
+#### Type
+`array`
+
+#### Units
+`line widths`
+
+#### Minimum
+`0`
+
+
+#### Disabled By
+`linePattern`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### linePattern
+Name: `linePattern`
+
+Mapbox spec: [line-pattern](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-pattern)
+
+#### Description
+Name of image in sprite to use for drawing image lines. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.
+
+#### Type
+`resolvedImage`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### lineGradient
+Name: `lineGradient`
+
+Mapbox spec: [line-gradient](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-gradient)
+
+#### Description
+A gradient used to color a line feature at various distances along its length. Defined using a `step` or `interpolate` expression which outputs a color for each corresponding `lineProgress` input value. `lineProgress` is a percentage of the line feature's total length as measured on the webmercator projected coordinate plane (a `number` between `0` and `1`). Can only be used with GeoJSON sources that specify `"lineMetrics": true`.
+
+#### Type
+`color`
+
+
+#### Disabled By
+`linePattern`
+
+#### Expression
+
+Parameters: `line-progress`
+
+___
+
+### lineTrimOffset
+Name: `lineTrimOffset`
+
+Mapbox spec: [line-trim-offset](https://docs.mapbox.com/style-spec/reference/layers/#paint-line-line-trim-offset)
+
+#### Description
+The line part between [trimStart, trimEnd] will be marked as transparent to make a route vanishing effect. The line trimOff offset is based on the whole line range [0.0, 1.0].
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Minimum
+`0,0`
+
+
+#### Maximum
+`1,1`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/LocationPuck.md b/node_modules/@rnmapbox/maps/docs/LocationPuck.md
new file mode 100644
index 0000000..573bb15
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/LocationPuck.md
@@ -0,0 +1,147 @@
+
+
+
+
+```tsx
+import { LocationPuck } from '@rnmapbox/maps';
+
+LocationPuck
+
+```
+Renders a puck on the map that shows the device's current location.
+
+## props
+
+
+### androidRenderMode
+
+```tsx
+'normal' | 'compass' | 'gps'
+```
+Android render mode.
+
+ - normal: just a circle
+ - compass: triangle with heading
+ - gps: large arrow
+
+@deprecated use `puckBearing` for source and `bearingImage` for image
+@platform android
+
+
+
+### puckBearing
+
+```tsx
+'heading' | 'course'
+```
+The bearing of the puck.
+
+ - heading: Orients the puck to match the direction in which the device is facing.
+ - course: Orients the puck to match the direction in which the device is moving.
+
+
+
+### puckBearingEnabled
+
+```tsx
+boolean
+```
+Whether the puck rotates to track the bearing source.
+
+
+
+### iosShowsUserHeadingIndicator
+
+```tsx
+boolean
+```
+iOS only. A Boolean value indicating whether the user location annotation may display a permanent heading indicator.
+
+@platform ios
+@deprecated use `puckBearingEnabled={true} puckBrearing="heading"` instead
+
+
+
+### topImage
+
+```tsx
+string
+```
+The name of image to use as the top layer for the location indicator. Images component should define this image.
+
+[Custom Native UserLocation](../examples/UserLocation/CustomNativeUserLocation)
+
+### bearingImage
+
+```tsx
+string
+```
+The name of image to use as the middle layer for the location indicator. Images component should define this image.
+
+
+
+### shadowImage
+
+```tsx
+string
+```
+The name of image to use as the background for the location indicator. Images component should define this image.
+
+
+
+### scale
+
+```tsx
+T | Expression
+```
+The size of the images, as a scale factor applied to the size of the specified image. Supports expressions based on zoom.
+
+@example
+["interpolate",["linear"], ["zoom"], 10.0, 1.0, 20.0, 4.0]]
+@example
+2.0
+
+[Custom Native UserLocation](../examples/UserLocation/CustomNativeUserLocation)
+
+### pulsing
+
+```tsx
+| {
+ /**
+ * Flag determining whether the pulsing circle animation.
+ */
+ isEnabled?: boolean;
+
+ /**
+ * The color of the pulsing circle.
+ */
+ color?: number | ColorValue;
+
+ /**
+ * Circle radius configuration for the pulsing circle animation.
+ * - accuracy: Pulsing circle animates with the `horizontalAccuracy` form the latest puck location.
+ * - number: Pulsing circle should animate with the constant radius.
+ */
+ radius?: 'accuracy' | number;
+ }
+| 'default'
+```
+The configration parameters for sonar-like pulsing circle animation shown around the 2D puck.
+
+
+
+### visible
+
+```tsx
+boolean
+```
+Whether location icon is visible, defaults to true
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Logger.md b/node_modules/@rnmapbox/maps/docs/Logger.md
new file mode 100644
index 0000000..ce858ef
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Logger.md
@@ -0,0 +1,22 @@
+# Logger
+
+## methods
+### setLogLevel(LogLevel)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `LogLevel` | `String` | `Yes` | required level of logging, can be `"error" | "warning" | "info" | "debug" | "verbose"` |
+
+#### Description
+sets the amount of logging
+
+### setLogCallback(LogCallback)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `LogCallback` | `function` | `Yes` | callback taking a log object `{ message: String, level: LogLevel, tag: String }` as param. If callback return falsy value then default logging will take place. |
+
+#### Description
+overwrite logging - good to mute specific errors/ warnings
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/docs/MapView.md b/node_modules/@rnmapbox/maps/docs/MapView.md
new file mode 100644
index 0000000..8f252f1
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/MapView.md
@@ -0,0 +1,733 @@
+
+
+
+
+```tsx
+import { MapView } from '@rnmapbox/maps';
+
+MapView
+
+```
+MapView backed by Mapbox Native GL
+
+## props
+
+
+### contentInset
+
+```tsx
+number | number[]
+```
+The distance from the edges of the map view’s frame to the edges of the map view’s logical viewport.
+@deprecated use Camera `padding` instead
+
+
+
+### projection
+
+```tsx
+'mercator' | 'globe'
+```
+The projection used when rendering the map
+
+[Globe Projection](../examples/V10/GlobeProjection)
+
+### styleURL
+
+```tsx
+string
+```
+Style URL for map - notice, if non is set it _will_ default to `Mapbox.StyleURL.Street`
+
+
+
+### styleJSON
+
+```tsx
+string
+```
+StyleJSON for map - according to TileJSON specs: https://github.com/mapbox/tilejson-spec
+
+
+
+### preferredFramesPerSecond
+
+```tsx
+number
+```
+iOS: The preferred frame rate at which the map view is rendered.
+The default value for this property is MGLMapViewPreferredFramesPerSecondDefault,
+which will adaptively set the preferred frame rate based on the capability of
+the user’s device to maintain a smooth experience. This property can be set to arbitrary integer values.
+
+Android: The maximum frame rate at which the map view is rendered, but it can't exceed the ability of device hardware.
+This property can be set to arbitrary integer values.
+
+
+
+### zoomEnabled
+
+```tsx
+boolean
+```
+Enable/Disable zoom on the map
+
+
+
+### scrollEnabled
+
+```tsx
+boolean
+```
+Enable/Disable scroll on the map
+
+ _defaults to:_ `true`
+
+
+### pitchEnabled
+
+```tsx
+boolean
+```
+Enable/Disable pitch on map
+
+ _defaults to:_ `true`
+
+
+### rotateEnabled
+
+```tsx
+boolean
+```
+Enable/Disable rotation on map
+
+ _defaults to:_ `true`
+
+
+### attributionEnabled
+
+```tsx
+boolean
+```
+The Mapbox terms of service, which governs the use of Mapbox-hosted vector tiles and styles,
+[requires](https://www.mapbox.com/help/how-attribution-works/) these copyright notices to accompany any map that features Mapbox-designed styles, OpenStreetMap data, or other Mapbox data such as satellite or terrain data.
+If that applies to this map view, do not hide this view or remove any notices from it.
+
+You are additionally [required](https://www.mapbox.com/help/how-mobile-apps-work/#telemetry) to provide users with the option to disable anonymous usage and location sharing (telemetry).
+If this view is hidden, you must implement this setting elsewhere in your app. See our website for [Android](https://www.mapbox.com/android-docs/map-sdk/overview/#telemetry-opt-out) and [iOS](https://www.mapbox.com/ios-sdk/#telemetry_opt_out) for implementation details.
+
+Enable/Disable attribution on map. For iOS you need to add MGLMapboxMetricsEnabledSettingShownInApp=YES
+to your Info.plist
+
+ _defaults to:_ `true`
+[Ornaments](../examples/Map/Ornaments)
+
+### attributionPosition
+
+```tsx
+OrnamentPositonProp
+```
+Adds attribution offset, e.g. `{top: 8, left: 8}` will put attribution button in top-left corner of the map. By default on Android, the attribution with information icon (i) will be on the bottom left, while on iOS the mapbox logo will be on bottom left with information icon (i) on bottom right. Read more about mapbox attribution [here](https://docs.mapbox.com/help/getting-started/attribution/)
+
+[Ornaments](../examples/Map/Ornaments)
+
+### tintColor
+
+```tsx
+string | number[]
+```
+MapView's tintColor
+
+[Set Tint Color](../examples/UserLocation/SetTintColor)
+
+### logoEnabled
+
+```tsx
+boolean
+```
+Enable/Disable the logo on the map.
+
+ _defaults to:_ `true`
+[Ornaments](../examples/Map/Ornaments)
+
+### logoPosition
+
+```tsx
+OrnamentPositonProp
+```
+Adds logo offset, e.g. `{top: 8, left: 8}` will put the logo in top-left corner of the map
+
+[Ornaments](../examples/Map/Ornaments)
+
+### compassEnabled
+
+```tsx
+boolean
+```
+Enable/Disable the compass from appearing on the map
+
+ _defaults to:_ `false`
+[Ornaments](../examples/Map/Ornaments)
+
+### compassFadeWhenNorth
+
+```tsx
+boolean
+```
+[`mapbox` (v10) implementation only] Enable/Disable if the compass should fade out when the map is pointing north
+
+ _defaults to:_ `false`
+[Ornaments](../examples/Map/Ornaments)
+
+### compassPosition
+
+```tsx
+OrnamentPositonProp
+```
+[`mapbox` (v10) implementation only] Adds compass offset, e.g. `{top: 8, left: 8}` will put the compass in top-left corner of the map
+
+[Ornaments](../examples/Map/Ornaments)
+
+### compassViewPosition
+
+```tsx
+number
+```
+Change corner of map the compass starts at. 0: TopLeft, 1: TopRight, 2: BottomLeft, 3: BottomRight
+
+
+
+### compassViewMargins
+
+```tsx
+type CompassViewMargins = {
+ x: number; /* FIX ME NO DESCRIPTION */
+ y: number; /* FIX ME NO DESCRIPTION */
+}
+```
+Add margins to the compass with x and y values
+
+
+
+### compassImage
+
+```tsx
+string
+```
+[iOS, `mapbox` (v10) implementation only] A string referencing an image key. Requires an `Images` component.
+
+[Ornaments](../examples/Map/Ornaments)
+
+### scaleBarEnabled
+
+```tsx
+boolean
+```
+[`mapbox` (v10) implementation only] Enable/Disable the scale bar from appearing on the map
+
+ _defaults to:_ `true`
+[Ornaments](../examples/Map/Ornaments)
+
+### scaleBarPosition
+
+```tsx
+OrnamentPositonProp
+```
+[`mapbox` (v10) implementation only] Adds scale bar offset, e.g. `{top: 8, left: 8}` will put the scale bar in top-left corner of the map
+
+[Ornaments](../examples/Map/Ornaments)
+
+### surfaceView
+
+```tsx
+boolean
+```
+[Android only] Enable/Disable use of GLSurfaceView instead of TextureView.
+
+ _defaults to:_ `RNMBXModule.MapboxV10 ? true : false`
+
+
+### requestDisallowInterceptTouchEvent
+
+```tsx
+boolean
+```
+[Android only] Experimental, call requestDisallowInterceptTouchEvent on parent with onTochEvent, this allows touch interaction to work
+when embedded into a scroll view
+
+ _defaults to:_ `false`
+
+
+### localizeLabels
+
+```tsx
+| {
+ /** locale code like `es` or `current` for the device's current locale */
+ locale: string;
+ /** layer id to localize. If not specified, all layers will be localized */
+ layerIds?: string[];
+ }
+| true
+```
+[`mapbox` (v10) implementation only]
+Set map's label locale, e.g. `{ "locale": "es" }` will localize labels to Spanish, `{ "locale": "current" }` will localize labels to system locale.
+
+[Localize Labels](../examples/Map/LocalizeLabels)
+
+### gestureSettings
+
+```tsx
+type GestureSettings = {
+ doubleTapToZoomInEnabled: boolean; /* Whether double tapping the map with one touch results in a zoom-in animation. */
+ doubleTouchToZoomOutEnabled: boolean; /* Whether single tapping the map with two touches results in a zoom-out animation. */
+ pinchPanEnabled: boolean; /* Whether pan/scroll is enabled for the pinch gesture. */
+ pinchZoomEnabled: boolean; /* Whether zoom is enabled for the pinch gesture. */
+ pinchZoomDecelerationEnabled: boolean; /* Whether a deceleration animation following a pinch-zoom gesture is enabled. True by default.
+(Android only) */
+ pitchEnabled: boolean; /* Whether the pitch gesture is enabled. */
+ quickZoomEnabled: boolean; /* Whether the quick zoom gesture is enabled. */
+ rotateEnabled: boolean; /* Whether the rotate gesture is enabled. */
+ rotateDecelerationEnabled: boolean; /* Whether a deceleration animation following a rotate gesture is enabled. True by default.
+(Android only) */
+ panEnabled: boolean; /* Whether the single-touch pan/scroll gesture is enabled. */
+ panDecelerationFactor: number; /* A constant factor that determines how quickly pan deceleration animations happen. Multiplied with the velocity vector once per millisecond during deceleration animations.
+
+On iOS Defaults to UIScrollView.DecelerationRate.normal.rawValue
+On android set to 0 to disable deceleration, and non zero to enabled it. */
+ simultaneousRotateAndPinchZoomEnabled: boolean; /* Whether rotation is enabled for the pinch zoom gesture. */
+ zoomAnimationAmount: number; /* The amount by which the zoom level increases or decreases during a double-tap-to-zoom-in or double-touch-to-zoom-out gesture. 1.0 by default. Must be positive.
+(Android only) */
+}
+```
+Gesture configuration allows to control the user touch interaction.
+
+
+
+### onPress
+
+```tsx
+func
+```
+Map press listener, gets called when a user presses the map
+*signature:*`(feature:GeoJSON.Feature) => void`
+
+[Show Click](../examples/Map/ShowClick)
+
+### onLongPress
+
+```tsx
+func
+```
+Map long press listener, gets called when a user long presses the map
+*signature:*`(feature:GeoJSON.Feature) => void`
+
+
+
+### onRegionWillChange
+
+```tsx
+func
+```
+<v10 only
+
+This event is triggered whenever the currently displayed map region is about to change.
+
+- `feature`: `PointFeature` - The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds
+*signature:*`(feature:GeoJSON.Feature) => void`
+
+[Show Region Did Change](../examples/Map/ShowRegionDidChange)
+
+### onRegionIsChanging
+
+```tsx
+func
+```
+This event is triggered whenever the currently displayed map region is changing.
+
+- `feature`: `PointFeature` - The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds
+*signature:*`(feature:GeoJSON.Feature) => void`
+
+[Show Region Did Change](../examples/Map/ShowRegionDidChange)
+
+### onRegionDidChange
+
+```tsx
+func
+```
+This event is triggered whenever the currently displayed map region finished changing.
+
+- `feature`: `PointFeature` - The geojson point feature at the camera center, properties contains zoomLevel, visibleBounds
+*signature:*`(feature:GeoJSON.Feature) => void`
+
+[Show Region Did Change](../examples/Map/ShowRegionDidChange)
+
+### onCameraChanged
+
+```tsx
+func
+```
+v10 only, replaces onRegionIsChanging
+*signature:*`(state:{properties: {center: GeoJSON.Position, bounds: {ne: GeoJSON.Position, sw: GeoJSON.Position}, zoom: number, heading: number, pitch: number}, gestures: {isGestureActive: boolean}, timestamp: number}) => void`
+
+
+
+### onMapIdle
+
+```tsx
+func
+```
+v10 only, replaces onRegionDidChange
+*signature:*`(state:{properties: {center: GeoJSON.Position, bounds: {ne: GeoJSON.Position, sw: GeoJSON.Position}, zoom: number, heading: number, pitch: number}, gestures: {isGestureActive: boolean}, timestamp: number}) => void`
+
+[Map Handlers](../examples/V10/MapHandlers)
+
+### onWillStartLoadingMap
+
+```tsx
+func
+```
+This event is triggered when the map is about to start loading a new map style.
+*signature:*`() => void`
+
+
+
+### onDidFinishLoadingMap
+
+```tsx
+func
+```
+This is triggered when the map has successfully loaded a new map style.
+*signature:*`() => void`
+
+
+
+### onDidFailLoadingMap
+
+```tsx
+func
+```
+This event is triggered when the map has failed to load a new map style. On v10 it's deprecated and replaced by onMapLoadingError
+**DEPRECATED** use onMapLoadingError
+*signature:*`() => void`
+
+
+
+### onMapLoadingError
+
+```tsx
+func
+```
+This event is tiggered when there is an error during map load. V10 only, replaces onDidFailLoadingMap, might be called multiple times and not exclusive with onDidFinishLoadingMap.
+*signature:*`() => void`
+
+
+
+### onWillStartRenderingFrame
+
+```tsx
+func
+```
+This event is triggered when the map will start rendering a frame.
+*signature:*`() => void`
+
+
+
+### onDidFinishRenderingFrame
+
+```tsx
+func
+```
+This event is triggered when the map finished rendering a frame.
+*signature:*`() => void`
+
+
+
+### onDidFinishRenderingFrameFully
+
+```tsx
+func
+```
+This event is triggered when the map fully finished rendering a frame.
+*signature:*`() => void`
+
+
+
+### onWillStartRenderingMap
+
+```tsx
+func
+```
+This event is triggered when the map will start rendering the map.
+*signature:*`() => void`
+
+
+
+### onDidFinishRenderingMap
+
+```tsx
+func
+```
+This event is triggered when the map finished rendering the map.
+*signature:*`() => void`
+
+
+
+### onDidFinishRenderingMapFully
+
+```tsx
+func
+```
+This event is triggered when the map fully finished rendering the map.
+*signature:*`() => void`
+
+
+
+### onUserLocationUpdate
+
+```tsx
+func
+```
+This event is triggered when the user location is updated.
+*signature:*`(feature:Location) => void`
+
+
+
+### onDidFinishLoadingStyle
+
+```tsx
+func
+```
+This event is triggered when a style has finished loading.
+*signature:*`() => void`
+
+
+
+### regionWillChangeDebounceTime
+
+```tsx
+number
+```
+The emitted frequency of regionwillchange events
+
+ _defaults to:_ `10`
+
+
+### regionDidChangeDebounceTime
+
+```tsx
+number
+```
+The emitted frequency of regiondidchange events
+
+ _defaults to:_ `500`
+
+
+### deselectAnnotationOnTap
+
+```tsx
+boolean
+```
+Set to true to deselect any selected annotation when the map is tapped. If set to true you will not receive
+the onPress event for the taps that deselect the annotation. Default is false.
+
+[Show Point Annotations](../examples/Annotations/ShowPointAnnotation)
+
+
+
+
+
+
+## methods
+### getPointInView(coordinate)
+
+Converts a geographic coordinate to a point in the given view’s coordinate system.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `coordinate` | `Position` | `Yes` | A point expressed in the map view's coordinate system. |
+
+
+
+```javascript
+const pointInView = await this._map.getPointInView([-37.817070, 144.949901]);
+```
+
+
+### getCoordinateFromView(point)
+
+Converts a point in the given view’s coordinate system to a geographic coordinate.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `point` | `Position` | `Yes` | A point expressed in the given view’s coordinate system. |
+
+
+
+```javascript
+const coordinate = await this._map.getCoordinateFromView([100, 100]);
+```
+
+
+### getVisibleBounds()
+
+The coordinate bounds (ne, sw) visible in the user’s viewport.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+const visibleBounds = await this._map.getVisibleBounds();
+```
+
+
+### queryRenderedFeaturesAtPoint(coordinate[, filter][, layerIDs])
+
+Returns an array of rendered map features that intersect with a given point.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `coordinate` | `Position` | `Yes` | A point expressed in the map view’s coordinate system. |
+| `filter` | `Array` | `No` | A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array. |
+| `layerIDs` | `Array` | `No` | A array of layer id's to filter the features by |
+
+
+
+```javascript
+this._map.queryRenderedFeaturesAtPoint([30, 40], ['==', 'type', 'Point'], ['id1', 'id2'])
+```
+
+
+### queryRenderedFeaturesInRect(bbox[, filter][, layerIDs])
+
+Returns an array of rendered map features that intersect with the given rectangle, restricted to the given style layers and filtered by the given predicate. In v10, passing an empty array will query the entire visible bounds of the map.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `bbox` | `BBox \| []` | `Yes` | A rectangle expressed in the map view’s coordinate system. For v10, this can be an empty array to query the visible map area. |
+| `filter` | `Array` | `No` | A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array. |
+| `layerIDs` | `Array` | `No` | A array of layer id's to filter the features by |
+
+
+
+```javascript
+this._map.queryRenderedFeaturesInRect([30, 40, 20, 10], ['==', 'type', 'Point'], ['id1', 'id2'])
+```
+
+
+### querySourceFeatures(sourceId[, filter][, sourceLayerIDs])
+
+Returns an array of GeoJSON Feature objects representing features within the specified vector tile or GeoJSON source that satisfy the query parameters.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `sourceId` | `string` | `Yes` | Style source identifier used to query for source features. |
+| `filter` | `Array` | `No` | A filter to limit query results. |
+| `sourceLayerIDs` | `Array` | `No` | The name of the source layers to query. For vector tile sources, this parameter is required. For GeoJSON sources, it is ignored. |
+
+
+
+```javascript
+this._map.querySourceFeatures('your-source-id', [], ['your-source-layer'])
+```
+
+
+### setCamera()
+
+Map camera will perform updates based on provided config. Deprecated use Camera#setCamera.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+### takeSnap([writeToDisk])
+
+Takes snapshot of map with current tiles and returns a URI to the image
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `writeToDisk` | `Boolean` | `No` | If true will create a temp file, otherwise it is in base64 |
+
+
+### getZoom()
+
+Returns the current zoom of the map view.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+const zoom = await this._map.getZoom();
+```
+
+
+### getCenter()
+
+Returns the map's geographical centerpoint
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+const center = await this._map.getCenter();
+```
+
+
+### clearData()
+
+Clears temporary map data from the data path defined in the given resource options. Useful to reduce the disk usage or in case the disk cache contains invalid data.
v10 only
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+### queryTerrainElevation(coordinate)
+
+Queries the currently loaded data for elevation at a geographical location. The elevation is returned in meters relative to mean sea-level. Returns null if terrain is disabled or if terrain data for the location hasn't been loaded yet.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `coordinate` | `Position` | `Yes` | the coordinates to query elevation at |
+
+
+[Query Terrain Elevation](../examples/V10/QueryTerrainElevation)### setSourceVisibility(visible, sourceId[, sourceLayerId])
+
+Sets the visibility of all the layers referencing the specified `sourceLayerId` and/or `sourceId`
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `visible` | `boolean` | `Yes` | Visibility of the layers |
+| `sourceId` | `string` | `Yes` | Identifier of the target source (e.g. 'composite') |
+| `sourceLayerId` | `String` | `No` | Identifier of the target source-layer (e.g. 'building') |
+
+
+
+```javascript
+await this._map.setSourceVisibility(false, 'composite', 'building')
+```
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Mapbox.md b/node_modules/@rnmapbox/maps/docs/Mapbox.md
new file mode 100644
index 0000000..79c3d1c
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Mapbox.md
@@ -0,0 +1,92 @@
+# Mapbox
+
+## methods
+### setAccessToken(accessToken)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `accessToken` | `String` | `Yes` | required acessToken to pull mapbox tiles, can be `null` if other tiles are used |
+
+#### Description
+sets the accessToken, which is required when you want to use mapbox tiles
+not required when using other tiles
+
+### setWellKnownTileServer(tileServer)
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `tileServer` | `String` | `Yes` | tile server |
+
+#### Description
+Deprecard will be removed on next version
+
+### getAccessToken()
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `accessToken` | `String` | `Yes` | required acessToken to pull mapbox tiles, can be `null` if other tiles are used |
+
+#### Description
+gets the accessToken
+
+
+### addCustomHeader(headerName, headerValue)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `headerName` | `String` | `Yes` | name for customHeader |
+| `headerValue` | `String` | `Yes` | value for customHeader |
+
+#### Description
+also see [CustomHttpHeaders](/docs/CustomHttpHeaders.md)
+
+
+### removeCustomHeader(headerName)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `headerName` | `String` | `Yes` | name of customHeader to be removed |
+
+#### Description
+also see [CustomHttpHeaders](/docs/CustomHttpHeaders.md)
+
+### setTelemetryEnabled(telemetryEnabled)
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `telemetryEnabled` | `Boolean` | `Yes` | |
+
+#### Description
+If mapbox' telemetry should be enabled or not
+
+## Android only
+### requestAndroidLocationPermissions()
+#### Description
+Opens Android Location Permission prompt.
+Returns a Promise which resolves into a boolean.
+Either permission was granted or denied.
+
+
+### setConnected(connected)
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `connected` | `Boolean` | `Yes` | whether or not mapbox is told to be connected or not |
+
+### Description
+If you want to fully block online map - maybe to force offline maps
+
+### clearData
+
+Clears temporary map data from the data path defined in the given resource options. Useful to reduce the disk usage or in case the disk cache contains invalid data.
+
+### Description
+If you want to fully block online map - maybe to force offline maps
\ No newline at end of file
diff --git a/node_modules/@rnmapbox/maps/docs/MarkerView.md b/node_modules/@rnmapbox/maps/docs/MarkerView.md
new file mode 100644
index 0000000..acb7626
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/MarkerView.md
@@ -0,0 +1,99 @@
+
+
+
+
+```tsx
+import { MarkerView } from '@rnmapbox/maps';
+
+MarkerView
+
+```
+MarkerView represents an interactive React Native marker on the map.
+
+If you have static views, consider using PointAnnotation or SymbolLayer to display
+an image, as they'll offer much better performance. Mapbox suggests using this
+component for a maximum of around 100 views displayed at one time.
+
+This is implemented with view annotations on [Android](https://docs.mapbox.com/android/maps/guides/annotations/view-annotations/)
+and [iOS](https://docs.mapbox.com/ios/maps/guides/annotations/view-annotations).
+
+This component has no dedicated `onPress` method. Instead, you should handle gestures
+with the React views passed in as `children`.
+
+## props
+
+
+### coordinate
+
+```tsx
+Position
+```
+_required_
+The center point (specified as a map coordinate) of the marker.
+
+
+
+### anchor
+
+```tsx
+type Anchor = {
+ x: number; /* FIX ME NO DESCRIPTION */
+ y: number; /* FIX ME NO DESCRIPTION */
+}
+```
+Any coordinate between (0, 0) and (1, 1), where (0, 0) is the top-left corner of
+the view, and (1, 1) is the bottom-right corner. Defaults to the center at (0.5, 0.5).
+
+ _defaults to:_ `{ x: 0.5, y: 0.5 }`
+
+
+### allowOverlap
+
+```tsx
+boolean
+```
+@v10
+
+Whether or not nearby markers on the map should all be displayed. If false, adjacent
+markers will 'collapse' and only one will be shown. Defaults to false.
+
+ _defaults to:_ `false`
+
+
+### allowOverlapWithPuck
+
+```tsx
+boolean
+```
+Whether or not nearby markers on the map should be hidden if close to a
+UserLocation puck. Defaults to false.
+
+ _defaults to:_ `false`
+
+
+### isSelected
+
+```tsx
+boolean
+```
+FIX ME NO DESCRIPTION
+
+ _defaults to:_ `false`
+
+
+### children
+
+```tsx
+ReactReactElement
+```
+_required_
+One or more valid React Native views.
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/ModelLayer.md b/node_modules/@rnmapbox/maps/docs/ModelLayer.md
new file mode 100644
index 0000000..8559fcf
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/ModelLayer.md
@@ -0,0 +1,136 @@
+
+
+ Mapbox spec: [model](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#model)
+
+
+```tsx
+import { ModelLayer } from '@rnmapbox/maps';
+
+ModelLayer
+
+```
+ModelLayer is a style layer that renders one or more stroked polylines on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+ModelLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Models.md b/node_modules/@rnmapbox/maps/docs/Models.md
new file mode 100644
index 0000000..344d3a1
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Models.md
@@ -0,0 +1,33 @@
+
+
+
+
+```tsx
+import { Models } from '@rnmapbox/maps';
+
+Models
+
+```
+Name of 3D model assets to be used in the map
+
+## props
+
+
+### models
+
+```tsx
+type Models = {
+ [object Object]: union; /* FIX ME NO DESCRIPTION */
+}
+```
+_required_
+pair odf model name to gltf and gbl file path/url, or asset id.
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/NativeUserLocation.md b/node_modules/@rnmapbox/maps/docs/NativeUserLocation.md
new file mode 100644
index 0000000..0a4e4ce
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/NativeUserLocation.md
@@ -0,0 +1,147 @@
+
+
+
+
+```tsx
+import { NativeUserLocation } from '@rnmapbox/maps';
+
+NativeUserLocation
+
+```
+
+
+## props
+
+
+### androidRenderMode
+
+```tsx
+'normal' | 'compass' | 'gps'
+```
+Android render mode.
+
+ - normal: just a circle
+ - compass: triangle with heading
+ - gps: large arrow
+
+@deprecated use `puckBearing` for source and `bearingImage` for image
+@platform android
+
+
+
+### puckBearing
+
+```tsx
+'heading' | 'course'
+```
+The bearing of the puck.
+
+ - heading: Orients the puck to match the direction in which the device is facing.
+ - course: Orients the puck to match the direction in which the device is moving.
+
+
+
+### puckBearingEnabled
+
+```tsx
+boolean
+```
+Whether the puck rotates to track the bearing source.
+
+
+
+### iosShowsUserHeadingIndicator
+
+```tsx
+boolean
+```
+iOS only. A Boolean value indicating whether the user location annotation may display a permanent heading indicator.
+
+@platform ios
+@deprecated use `puckBearingEnabled={true} puckBrearing="heading"` instead
+
+
+
+### topImage
+
+```tsx
+string
+```
+The name of image to use as the top layer for the location indicator. Images component should define this image.
+
+[Custom Native UserLocation](../examples/UserLocation/CustomNativeUserLocation)
+
+### bearingImage
+
+```tsx
+string
+```
+The name of image to use as the middle layer for the location indicator. Images component should define this image.
+
+
+
+### shadowImage
+
+```tsx
+string
+```
+The name of image to use as the background for the location indicator. Images component should define this image.
+
+
+
+### scale
+
+```tsx
+T | Expression
+```
+The size of the images, as a scale factor applied to the size of the specified image. Supports expressions based on zoom.
+
+@example
+["interpolate",["linear"], ["zoom"], 10.0, 1.0, 20.0, 4.0]]
+@example
+2.0
+
+[Custom Native UserLocation](../examples/UserLocation/CustomNativeUserLocation)
+
+### pulsing
+
+```tsx
+| {
+ /**
+ * Flag determining whether the pulsing circle animation.
+ */
+ isEnabled?: boolean;
+
+ /**
+ * The color of the pulsing circle.
+ */
+ color?: number | ColorValue;
+
+ /**
+ * Circle radius configuration for the pulsing circle animation.
+ * - accuracy: Pulsing circle animates with the `horizontalAccuracy` form the latest puck location.
+ * - number: Pulsing circle should animate with the constant radius.
+ */
+ radius?: 'accuracy' | number;
+ }
+| 'default'
+```
+The configration parameters for sonar-like pulsing circle animation shown around the 2D puck.
+
+
+
+### visible
+
+```tsx
+boolean
+```
+Whether location icon is visible, defaults to true
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/OfflineManager.md b/node_modules/@rnmapbox/maps/docs/OfflineManager.md
new file mode 100644
index 0000000..974dae1
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/OfflineManager.md
@@ -0,0 +1,273 @@
+
+
+
+
+```tsx
+import { offlineManager } from '@rnmapbox/maps';
+
+offlineManager
+
+```
+OfflineManager implements a singleton (shared object) that manages offline packs.
+All of this class’s instance methods are asynchronous, reflecting the fact that offline resources are stored in a database.
+The shared object maintains a canonical collection of offline packs.
+
+
+
+## methods
+### createPack(options[, progressListener][, errorListener])
+
+Creates and registers an offline pack that downloads the resources needed to use the given region offline.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `options` | `OfflineCreatePackOptions` | `Yes` | Create options for a offline pack that specifices zoom levels, style url, and the region to download. |
+| `progressListener` | `Callback` | `No` | Callback that listens for status events while downloading the offline resource. |
+| `errorListener` | `Callback` | `No` | Callback that listens for status events while downloading the offline resource. |
+
+
+
+```javascript
+const progressListener = (offlineRegion, status) => console.log(offlineRegion, status);
+const errorListener = (offlineRegion, err) => console.log(offlineRegion, err);
+
+await Mapbox.offlineManager.createPack({
+ name: 'offlinePack',
+ styleURL: 'mapbox://...',
+ minZoom: 14,
+ maxZoom: 20,
+ bounds: [[neLng, neLat], [swLng, swLat]]
+}, progressListener, errorListener)
+```
+
+
+[Offline Example](../examples/Map/OfflineExample)### invalidatePack(name)
+
+Invalidates the specified offline pack. This method checks that the tiles in the specified offline pack match those from the server. Local tiles that do not match the latest version on the server are updated.This is more efficient than deleting the offline pack and downloading it again. If the data stored locally matches that on the server, new data will not be downloaded.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+await Mapbox.offlineManager.invalidatePack('packName')
+```
+
+
+### deletePack(name)
+
+Unregisters the given offline pack and allows resources that are no longer required by any remaining packs to be potentially freed.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+await Mapbox.offlineManager.deletePack('packName')
+```
+
+
+### invalidateAmbientCache()
+
+Forces a revalidation of the tiles in the ambient cache and downloads a fresh version of the tiles from the tile server. This is the recommend method for clearing the cache. This is the most efficient method because tiles in the ambient cache are re-downloaded to remove outdated data from a device. It does not erase resources from the ambient cache or delete the database, which can be computationally expensive operations that may carry unintended side effects.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.invalidateAmbientCache();
+```
+
+
+### clearAmbientCache()
+
+Erases resources from the ambient cache. This method clears the cache and decreases the amount of space that map resources take up on the device.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.clearAmbientCache();
+```
+
+
+### migrateOfflineCache()
+
+Migrates the offline cache from pre-v10 SDKs to the new v10 cache location
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.migrateOfflineCache()
+```
+
+
+### setMaximumAmbientCacheSize(size)
+
+Sets the maximum size of the ambient cache in bytes. Disables the ambient cache if set to 0. This method may be computationally expensive because it will erase resources from the ambient cache if its size is decreased.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `size` | `Number` | `Yes` | Size of ambient cache. |
+
+
+
+```javascript
+await Mapbox.offlineManager.setMaximumAmbientCacheSize(5000000);
+```
+
+
+### resetDatabase()
+
+Deletes the existing database, which includes both the ambient cache and offline packs, then reinitializes it.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.resetDatabase();
+```
+
+
+### getPacks()
+
+Retrieves all the current offline packs that are stored in the database.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+const offlinePacks = await Mapbox.offlineManager.getPacks();
+```
+
+
+[Offline Example](../examples/Map/OfflineExample)### getPack(name)
+
+Retrieves an offline pack that is stored in the database by name.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+const offlinePack = await Mapbox.offlineManager.getPack();
+```
+
+
+[Offline Example](../examples/Map/OfflineExample)### mergeOfflineRegions(path)
+
+Sideloads offline db
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `path` | `String` | `Yes` | Path to offline tile db on file system. |
+
+
+
+```javascript
+await Mapbox.offlineManager.mergeOfflineRegions(path);
+```
+
+
+### setTileCountLimit(limit)
+
+Sets the maximum number of Mapbox-hosted tiles that may be downloaded and stored on the current device. The Mapbox Terms of Service prohibit changing or bypassing this limit without permission from Mapbox.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `limit` | `Number` | `Yes` | Map tile limit count. |
+
+
+
+```javascript
+Mapbox.offlineManager.setTileCountLimit(1000);
+```
+
+
+### setProgressEventThrottle(throttleValue)
+
+Sets the period at which download status events will be sent over the React Native bridge. The default is 300ms.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `throttleValue` | `Number` | `Yes` | event throttle value in ms. |
+
+
+
+```javascript
+Mapbox.offlineManager.setProgressEventThrottle(500);
+```
+
+
+### subscribe(packName, progressListener, errorListener)
+
+Subscribe to download status/error events for the requested offline pack. Note that createPack calls this internally if listeners are provided.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `packName` | `String` | `Yes` | Name of the offline pack. |
+| `progressListener` | `Callback` | `Yes` | Callback that listens for status events while downloading the offline resource. |
+| `errorListener` | `Callback` | `Yes` | Callback that listens for status events while downloading the offline resource. |
+
+
+
+```javascript
+const progressListener = (offlinePack, status) => console.log(offlinePack, status)
+const errorListener = (offlinePack, err) => console.log(offlinePack, err)
+Mapbox.offlineManager.subscribe('packName', progressListener, errorListener)
+```
+
+
+### unsubscribe(packName)
+
+Unsubscribes any listeners associated with the offline pack. It's a good idea to call this on componentWillUnmount.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `packName` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+Mapbox.offlineManager.unsubscribe('packName')
+```
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/OfflineManagerLegacy.md b/node_modules/@rnmapbox/maps/docs/OfflineManagerLegacy.md
new file mode 100644
index 0000000..4411170
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/OfflineManagerLegacy.md
@@ -0,0 +1,136 @@
+
+
+
+
+```tsx
+import { offlineManagerLegacy } from '@rnmapbox/maps';
+
+offlineManagerLegacy
+
+```
+OfflineManagerLegacy implements a singleton (shared object) that manages offline packs.
+All of this class’s instance methods are asynchronous, reflecting the fact that offline resources are stored in a database.
+The shared object maintains a canonical collection of offline packs.
+
+
+
+## methods
+### createPack(options)
+
+Creates and registers an offline pack that downloads the resources needed to use the given region offline.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `options` | `OfflineCreatePackOptions` | `Yes` | Create options for a offline pack that specifices zoom levels, style url, and the region to download. |
+
+
+
+```javascript
+await Mapbox.offlineManager.createPack({
+ name: 'offlinePack',
+ styleURL: 'mapbox://...',
+ minZoom: 14,
+ maxZoom: 20,
+ bounds: [[neLng, neLat], [swLng, swLat]]
+})
+```
+
+
+### invalidatePack(name)
+
+Invalidates the specified offline pack. This method checks that the tiles in the specified offline pack match those from the server. Local tiles that do not match the latest version on the server are updated.This is more efficient than deleting the offline pack and downloading it again. If the data stored locally matches that on the server, new data will not be downloaded.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+await Mapbox.offlineManagerLegacy.invalidatePack('packName')
+```
+
+
+### deletePack(name)
+
+Unregisters the given offline pack and allows resources that are no longer required by any remaining packs to be potentially freed.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+await Mapbox.offlineManagerLegacy.deletePack('packName')
+```
+
+
+### migrateOfflineCache()
+
+Migrates the offline cache from pre-v10 SDKs to the new v10 cache location
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.migrateOfflineCache()
+```
+
+
+### resetDatabase()
+
+Deletes the existing database, which includes both the ambient cache and offline packs, then reinitializes it.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+await Mapbox.offlineManager.resetDatabase();
+```
+
+
+### getPacks()
+
+Retrieves all the current offline packs that are stored in the database.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
+```javascript
+const offlinePacks = await Mapbox.offlineManagerLegacy.getPacks();
+```
+
+
+### getPack(name)
+
+Retrieves an offline pack that is stored in the database by name.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `name` | `String` | `Yes` | Name of the offline pack. |
+
+
+
+```javascript
+const offlinePack = await Mapbox.offlineManagerLegacy.getPack();
+```
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/PointAnnotation.md b/node_modules/@rnmapbox/maps/docs/PointAnnotation.md
new file mode 100644
index 0000000..a915e5d
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/PointAnnotation.md
@@ -0,0 +1,182 @@
+
+
+
+
+```tsx
+import { PointAnnotation } from '@rnmapbox/maps';
+
+PointAnnotation
+
+```
+PointAnnotation represents a one-dimensional shape located at a single geographical coordinate.
+
+Consider using ShapeSource and SymbolLayer instead, if you have many points and static images,
+they'll offer much better performance.
+
+If you need interactive views please use MarkerView because PointAnnotation will render children onto a bitmap.
+Also disable any kind of animations like `fadeDuration` of `Image`.
+Otherwise, the bitmap might be rendered at an unknown state of the animation.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the annotation
+
+
+
+### title
+
+```tsx
+string
+```
+The string containing the annotation’s title. Note this is required to be set if you want to see a callout appear on iOS.
+
+
+
+### snippet
+
+```tsx
+string
+```
+The string containing the annotation’s snippet(subtitle). Not displayed in the default callout.
+
+
+
+### selected
+
+```tsx
+boolean
+```
+Manually selects/deselects annotation
+
+
+
+### draggable
+
+```tsx
+boolean
+```
+Enable or disable dragging. Defaults to false.
+
+ _defaults to:_ `false`
+
+
+### coordinate
+
+```tsx
+Position
+```
+_required_
+The center point (specified as a map coordinate) of the annotation.
+
+
+
+### anchor
+
+```tsx
+type Anchor = {
+ x: number; /* See anchor */
+ y: number; /* See anchor */
+}
+```
+Specifies the anchor being set on a particular point of the annotation.
+The anchor point is specified in the continuous space [0.0, 1.0] x [0.0, 1.0],
+where (0, 0) is the top-left corner of the image, and (1, 1) is the bottom-right corner.
+Note this is only for custom annotations not the default pin view.
+Defaults to the center of the view.
+
+ _defaults to:_ `{ x: 0.5, y: 0.5 }`
+
+
+### onSelected
+
+```tsx
+func
+```
+This callback is fired once this annotation is selected. Returns a Feature as the first param.
+*signature:*`(payload:Feature) => void`
+
+
+
+### onDeselected
+
+```tsx
+func
+```
+This callback is fired once this annotation is deselected.
+*signature:*`(payload:Feature) => void`
+
+
+
+### onDragStart
+
+```tsx
+func
+```
+This callback is fired once this annotation has started being dragged.
+*signature:*`(payload:Feature) => void`
+
+
+
+### onDragEnd
+
+```tsx
+func
+```
+This callback is fired once this annotation has stopped being dragged.
+*signature:*`(payload:Feature) => void`
+
+
+
+### onDrag
+
+```tsx
+func
+```
+This callback is fired while this annotation is being dragged.
+*signature:*`(payload:Feature) => void`
+
+
+
+### children
+
+```tsx
+React.ReactElement | [React.ReactElement, React.ReactElement]
+```
+_required_
+Expects one child, and an optional callout can be added as well
+
+
+
+### style
+
+```tsx
+ViewProps['style']
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+## methods
+### refresh()
+
+On v10 and pre v10 android point annotation is rendered offscreen with a canvas into an image. To rerender the image from the current state of the view call refresh. Call this for example from Image#onLoad.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+[Show Point Annotations](../examples/Annotations/ShowPointAnnotation)
diff --git a/node_modules/@rnmapbox/maps/docs/RasterDemSource.md b/node_modules/@rnmapbox/maps/docs/RasterDemSource.md
new file mode 100644
index 0000000..e438daf
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/RasterDemSource.md
@@ -0,0 +1,100 @@
+
+
+
+
+```tsx
+import { RasterDemSource } from '@rnmapbox/maps';
+
+RasterDemSource
+
+```
+
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+A string that uniquely identifies the source.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing source in the style. Does not create a new source.
+
+
+
+### url
+
+```tsx
+string
+```
+A URL to a TileJSON configuration file describing the source’s contents and other metadata.
+
+
+
+### tileUrlTemplates
+
+```tsx
+Array
+```
+An array of tile URL templates. If multiple endpoints are specified, clients may use any combination of endpoints.
+Example: https://example.com/raster-tiles/{z}/{x}/{y}.png
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the minimum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+maxZoomLevel, if specified. The default value for this option is 0.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the maximum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+minZoomLevel, if specified. The default value for this option is 22.
+
+
+
+### tileSize
+
+```tsx
+number
+```
+Size of the map tiles.
+Mapbox urls default to 256, all others default to 512.
+
+
+
+### children
+
+```tsx
+React.ReactElement | React.ReactElement[]
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/RasterLayer.md b/node_modules/@rnmapbox/maps/docs/RasterLayer.md
new file mode 100644
index 0000000..f5da51f
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/RasterLayer.md
@@ -0,0 +1,490 @@
+
+
+ Mapbox spec: [raster](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#raster)
+
+
+```tsx
+import { RasterLayer } from '@rnmapbox/maps';
+
+RasterLayer
+
+```
+
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+RasterLayerStyleProps
+```
+_required_
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* visibility
+* rasterOpacity
+* rasterHueRotate
+* rasterBrightnessMin
+* rasterBrightnessMax
+* rasterSaturation
+* rasterContrast
+* rasterResampling
+* rasterFadeDuration
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-raster-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### rasterOpacity
+Name: `rasterOpacity`
+
+Mapbox spec: [raster-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-opacity)
+
+#### Description
+The opacity at which the image will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterOpacityTransition
+Name: `rasterOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterHueRotate
+Name: `rasterHueRotate`
+
+Mapbox spec: [raster-hue-rotate](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-hue-rotate)
+
+#### Description
+Rotates hues around the color wheel.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`degrees`
+
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterHueRotateTransition
+Name: `rasterHueRotateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterHueRotate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterBrightnessMin
+Name: `rasterBrightnessMin`
+
+Mapbox spec: [raster-brightness-min](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-brightness-min)
+
+#### Description
+Increase or reduce the brightness of the image. The value is the minimum brightness.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterBrightnessMinTransition
+Name: `rasterBrightnessMinTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterBrightnessMin property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterBrightnessMax
+Name: `rasterBrightnessMax`
+
+Mapbox spec: [raster-brightness-max](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-brightness-max)
+
+#### Description
+Increase or reduce the brightness of the image. The value is the maximum brightness.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterBrightnessMaxTransition
+Name: `rasterBrightnessMaxTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterBrightnessMax property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterSaturation
+Name: `rasterSaturation`
+
+Mapbox spec: [raster-saturation](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-saturation)
+
+#### Description
+Increase or reduce the saturation of the image.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Minimum
+`-1`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterSaturationTransition
+Name: `rasterSaturationTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterSaturation property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterContrast
+Name: `rasterContrast`
+
+Mapbox spec: [raster-contrast](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-contrast)
+
+#### Description
+Increase or reduce the contrast of the image.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Minimum
+`-1`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### rasterContrastTransition
+Name: `rasterContrastTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s rasterContrast property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### rasterResampling
+Name: `rasterResampling`
+
+Mapbox spec: [raster-resampling](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-resampling)
+
+#### Description
+The resampling/interpolation method to use for overscaling, also known as texture magnification filter
+
+#### Type
+`enum`
+#### Default Value
+`linear`
+
+#### Supported Values
+**linear** - (Bi)linear filtering interpolates pixel values using the weighted average of the four closest original source pixels creating a smooth but blurry look when overscaled
+**nearest** - Nearest neighbor filtering interpolates pixel values using the nearest original source pixel creating a sharp but pixelated look when overscaled
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### rasterFadeDuration
+Name: `rasterFadeDuration`
+
+Mapbox spec: [raster-fade-duration](https://docs.mapbox.com/style-spec/reference/layers/#paint-raster-raster-fade-duration)
+
+#### Description
+Fade duration when a new tile is added.
+
+#### Type
+`number`
+#### Default Value
+`300`
+
+#### Units
+`milliseconds`
+
+#### Minimum
+`0`
+
+
+#### Expression
+
+Parameters: `zoom`
+
diff --git a/node_modules/@rnmapbox/maps/docs/RasterSource.md b/node_modules/@rnmapbox/maps/docs/RasterSource.md
new file mode 100644
index 0000000..bd4aec3
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/RasterSource.md
@@ -0,0 +1,132 @@
+
+
+
+
+```tsx
+import { RasterSource } from '@rnmapbox/maps';
+
+RasterSource
+
+```
+RasterSource is a map content source that supplies raster image tiles to be shown on the map.
+The location of and metadata about the tiles are defined either by an option dictionary
+or by an external file that conforms to the TileJSON specification.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+A string that uniquely identifies the source.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing source in the style. Does not create a new source.
+
+
+
+### url
+
+```tsx
+string
+```
+A URL to a TileJSON configuration file describing the source’s contents and other metadata.
+
+
+
+### tileUrlTemplates
+
+```tsx
+Array
+```
+An array of tile URL templates. If multiple endpoints are specified, clients may use any combination of endpoints.
+Example: https://example.com/raster-tiles/{z}/{x}/{y}.png
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the minimum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+maxZoomLevel, if specified. The default value for this option is 0.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the maximum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+minZoomLevel, if specified. The default value for this option is 22.
+
+
+
+### tileSize
+
+```tsx
+number
+```
+Size of the map tiles.
+Mapbox urls default to 256, all others default to 512.
+
+
+
+### tms
+
+```tsx
+boolean
+```
+Influences the y direction of the tile coordinates. (tms inverts y axis)
+
+
+
+### attribution
+
+```tsx
+string
+```
+An HTML or literal text string defining the buttons to be displayed in an action sheet when the
+source is part of a map view’s style and the map view’s attribution button is pressed.
+
+
+
+### children
+
+```tsx
+React.ReactElement | React.ReactElement[]
+```
+FIX ME NO DESCRIPTION
+
+
+
+### sourceBounds
+
+```tsx
+Array
+```
+An array containing the longitude and latitude of the southwest and northeast corners of
+the source's bounding box in the following order: `[sw.lng, sw.lat, ne.lng, ne.lat]`.
+When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL.
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/ShapeSource.md b/node_modules/@rnmapbox/maps/docs/ShapeSource.md
new file mode 100644
index 0000000..4953e6e
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/ShapeSource.md
@@ -0,0 +1,256 @@
+
+
+
+
+```tsx
+import { ShapeSource } from '@rnmapbox/maps';
+
+ShapeSource
+
+```
+ShapeSource is a map content source that supplies vector shapes to be shown on the map.
+The shape may be an url or a GeoJSON object
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+A string that uniquely identifies the source.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing source in the style. Does not create a new source.
+
+
+
+### url
+
+```tsx
+string
+```
+An HTTP(S) URL, absolute file URL, or local file URL relative to the current application’s resource bundle.
+
+[Dynamic URL](../examples/Map/DynamicUrl)
+
+### shape
+
+```tsx
+| GeoJSON.GeometryCollection
+| GeoJSON.Feature
+| GeoJSON.FeatureCollection
+| GeoJSON.Geometry
+| ShapeAnimatorInterface
+```
+The contents of the source. A shape can represent a GeoJSON geometry, a feature, or a feature collection.
+
+
+
+### cluster
+
+```tsx
+boolean
+```
+Enables clustering on the source for point shapes.
+
+
+
+### clusterRadius
+
+```tsx
+number
+```
+Specifies the radius of each cluster if clustering is enabled.
+A value of 512 produces a radius equal to the width of a tile.
+The default value is 50.
+
+
+
+### clusterMaxZoomLevel
+
+```tsx
+number
+```
+Specifies the maximum zoom level at which to cluster points if clustering is enabled.
+Defaults to one zoom level less than the value of maxZoomLevel so that, at the maximum zoom level,
+the shapes are not clustered.
+
+
+
+### clusterProperties
+
+```tsx
+object
+```
+[`mapbox-gl` (v8) implementation only]
+Specifies custom properties on the generated clusters if clustering
+is enabled, aggregating values from clustered points.
+
+Has the form `{ "property_name": [operator, map_expression]}`, where
+ `operator` is a custom reduce expression that references a special `["accumulated"]` value -
+ it accumulates the property value from clusters/points the cluster contains
+ `map_expression` produces the value of a single point
+
+Example: `{ "resultingSum": [["+", ["accumulated"], ["get", "resultingSum"]], ["get", "scalerank"]] }`
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+Specifies the maximum zoom level at which to create vector tiles.
+A greater value produces greater detail at high zoom levels.
+The default value is 18.
+
+
+
+### buffer
+
+```tsx
+number
+```
+Specifies the size of the tile buffer on each side.
+A value of 0 produces no buffer. A value of 512 produces a buffer as wide as the tile itself.
+Larger values produce fewer rendering artifacts near tile edges and slower performance.
+The default value is 128.
+
+
+
+### tolerance
+
+```tsx
+number
+```
+Specifies the Douglas-Peucker simplification tolerance.
+A greater value produces simpler geometries and improves performance.
+The default value is 0.375.
+
+
+
+### lineMetrics
+
+```tsx
+boolean
+```
+Whether to calculate line distance metrics.
+This is required for line layers that specify lineGradient values.
+The default value is false.
+
+
+
+### onPress
+
+```tsx
+func
+```
+Source press listener, gets called when a user presses one of the children layers only
+if that layer has a higher z-index than another source layers
+
+- `event`: `Object`
+- `event.features`: `Object[]` - the geojson features that have hit by the press (might be multiple)
+- `event.coordinates`: `Object` - the coordinates of the click
+- `event.point`: `Object` - the point of the click
+@return void
+*signature:*`(event:OnPressEvent) => void`
+
+[Custom Icon](../examples/SymbolCircleLayer/CustomIcon), [Custom Icon Native Asset](../examples/SymbolCircleLayer/CustomIconNativeAsset)
+
+### hitbox
+
+```tsx
+type Hitbox = {
+ width: number; /* `width` of hitbox */
+ height: number; /* `height` of hitbox */
+}
+```
+Overrides the default touch hitbox(44x44 pixels) for the source layers
+
+
+
+### children
+
+```tsx
+React.ReactElement | React.ReactElement[]
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+## methods
+### getClusterExpansionZoom(feature)
+
+Returns the zoom needed to expand the cluster.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `feature` | `string \| GeoJSON.Feature` | `Yes` | The feature cluster to expand. |
+
+
+
+```javascript
+const zoom = await shapeSource.getClusterExpansionZoom(clusterId);
+```
+
+
+### getClusterLeaves(feature, limit, offset)
+
+Returns the FeatureCollection from the cluster.
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `feature` | `number \| GeoJSON.Feature` | `Yes` | The feature cluster to expand. |
+| `limit` | `number` | `Yes` | The number of points to return. |
+| `offset` | `number` | `Yes` | The amount of points to skip (for pagination). |
+
+
+
+```javascript
+const collection = await shapeSource.getClusterLeaves(clusterId, limit, offset);
+```
+
+
+[Earthquakes](../examples/SymbolCircleLayer/Earthquakes)### getClusterChildren(feature)
+
+Returns the FeatureCollection from the cluster (on the next zoom level).
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `feature` | `number \| GeoJSON.Feature` | `Yes` | The feature cluster to expand. |
+
+
+
+```javascript
+const collection = await shapeSource.getClusterChildren(clusterId);
+```
+
+
+### onPress(event)
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `event` | `NativeSyntheticEvent` | `Yes` | undefined |
+
+
+[Custom Icon](../examples/SymbolCircleLayer/CustomIcon), [Custom Icon Native Asset](../examples/SymbolCircleLayer/CustomIconNativeAsset)
diff --git a/node_modules/@rnmapbox/maps/docs/SkyLayer.md b/node_modules/@rnmapbox/maps/docs/SkyLayer.md
new file mode 100644
index 0000000..bfdbe01
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/SkyLayer.md
@@ -0,0 +1,362 @@
+
+
+ Mapbox spec: [sky](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#sky)
+
+
+```tsx
+import { SkyLayer } from '@rnmapbox/maps';
+
+SkyLayer
+
+```
+SkyLayer is a spherical dome around the map that is always rendered behind all other layers
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### style
+
+```tsx
+SkyLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* visibility
+* skyType
+* skyAtmosphereSun
+* skyAtmosphereSunIntensity
+* skyGradientCenter
+* skyGradientRadius
+* skyGradient
+* skyAtmosphereHaloColor
+* skyAtmosphereColor
+* skyOpacity
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-sky-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### skyType
+Name: `skyType`
+
+Mapbox spec: [sky-type](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-type)
+
+#### Description
+The type of the sky
+
+#### Type
+`enum`
+#### Default Value
+`atmosphere`
+
+#### Supported Values
+**gradient** - Renders the sky with a gradient that can be configured with `sky-gradient-radius` and `sky-gradient`.
+**atmosphere** - Renders the sky with a simulated atmospheric scattering algorithm, the sun direction can be attached to the light position or explicitly set through `sky-atmosphere-sun`.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### skyAtmosphereSun
+Name: `skyAtmosphereSun`
+
+Mapbox spec: [sky-atmosphere-sun](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-atmosphere-sun)
+
+#### Description
+Position of the sun center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the sun relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the sun, where 0° is directly above, at zenith, and 90° at the horizon. When this property is ommitted, the sun center is directly inherited from the light position.
+
+#### Type
+`array`
+
+#### Units
+`degrees`
+
+#### Minimum
+`0,0`
+
+
+#### Maximum
+`360,180`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### skyAtmosphereSunIntensity
+Name: `skyAtmosphereSunIntensity`
+
+Mapbox spec: [sky-atmosphere-sun-intensity](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-atmosphere-sun-intensity)
+
+#### Description
+Intensity of the sun as a light source in the atmosphere (on a scale from 0 to a 100). Setting higher values will brighten up the sky.
+
+#### Type
+`number`
+#### Default Value
+`10`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`100`
+
+
+___
+
+### skyGradientCenter
+Name: `skyGradientCenter`
+
+Mapbox spec: [sky-gradient-center](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-gradient-center)
+
+#### Description
+Position of the gradient center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the gradient center relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the gradient center, where 0° is directly above, at zenith, and 90° at the horizon.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`degrees`
+
+#### Minimum
+`0,0`
+
+
+#### Maximum
+`360,180`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### skyGradientRadius
+Name: `skyGradientRadius`
+
+Mapbox spec: [sky-gradient-radius](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-gradient-radius)
+
+#### Description
+The angular distance (measured in degrees) from `skyGradientCenter` up to which the gradient extends. A value of 180 causes the gradient to wrap around to the opposite direction from `skyGradientCenter`.
+
+#### Type
+`number`
+#### Default Value
+`90`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`180`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### skyGradient
+Name: `skyGradient`
+
+Mapbox spec: [sky-gradient](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-gradient)
+
+#### Description
+Defines a radial color gradient with which to color the sky. The color values can be interpolated with an expression using `skyRadialProgress`. The range [0, 1] for the interpolant covers a radial distance (in degrees) of [0, `skyGradientRadius`] centered at the position specified by `skyGradientCenter`.
+
+#### Type
+`color`
+#### Default Value
+`interpolate,linear,sky-radial-progress,0.8,#87ceeb,1,white`
+
+
+#### Expression
+
+Parameters: `sky-radial-progress`
+
+___
+
+### skyAtmosphereHaloColor
+Name: `skyAtmosphereHaloColor`
+
+Mapbox spec: [sky-atmosphere-halo-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-atmosphere-halo-color)
+
+#### Description
+A color applied to the atmosphere sun halo. The alpha channel describes how strongly the sun halo is represented in an atmosphere sky layer.
+
+#### Type
+`color`
+#### Default Value
+`white`
+
+
+
+___
+
+### skyAtmosphereColor
+Name: `skyAtmosphereColor`
+
+Mapbox spec: [sky-atmosphere-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-atmosphere-color)
+
+#### Description
+A color used to tweak the main atmospheric scattering coefficients. Using white applies the default coefficients giving the natural blue color to the atmosphere. This color affects how heavily the corresponding wavelength is represented during scattering. The alpha channel describes the density of the atmosphere, with 1 maximum density and 0 no density.
+
+#### Type
+`color`
+#### Default Value
+`white`
+
+
+
+___
+
+### skyOpacity
+Name: `skyOpacity`
+
+Mapbox spec: [sky-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-sky-sky-opacity)
+
+#### Description
+The opacity of the entire sky layer.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### skyOpacityTransition
+Name: `skyOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s skyOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Style.md b/node_modules/@rnmapbox/maps/docs/Style.md
new file mode 100644
index 0000000..9f48b09
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Style.md
@@ -0,0 +1,33 @@
+
+
+
+
+```tsx
+import { Style } from '@rnmapbox/maps';
+
+Style
+
+```
+Style is a component that automatically adds sources / layers to the map using Mapbox GL Style Spec.
+Only [`sources`](https://docs.mapbox.com/mapbox-gl-js/style-spec/sources) & [`layers`](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/) are supported.
+Other fields such as `sprites`, `glyphs` etc. will be ignored. Not all layer / source attributes from the style spec are supported, in general the supported attributes will be mentioned under https://github.com/rnmapbox/maps/tree/main/docs.
+
+## props
+
+
+### json
+
+```tsx
+MapboxJSON | URL
+```
+_required_
+A JSON object conforming to the schema described in the Mapbox Style Specification , or a URL to such JSON.
+
+[Style JSON](../examples/Map/StyleJson)
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/StyleImport.md b/node_modules/@rnmapbox/maps/docs/StyleImport.md
new file mode 100644
index 0000000..92e3eda
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/StyleImport.md
@@ -0,0 +1,57 @@
+
+
+
+
+```tsx
+import { StyleImport } from '@rnmapbox/maps';
+
+StyleImport
+
+```
+Use StyleImport to set configuration options on the new standard style. **V11 only.**
+
+See https://github.com/mapbox/mapbox-maps-ios/blob/main/Sources/MapboxMaps/Documentation.docc/Migrate%20to%20v11.md#21-the-mapbox-standard-style
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+id of the style import (eg. basemap)
+
+
+
+### existing
+
+```tsx
+boolean
+```
+_required_
+existing is now always required as true
+
+
+
+### config
+
+```tsx
+type Config = {
+ [object Object]: string; /* FIX ME NO DESCRIPTION */
+}
+```
+_required_
+config is a dictionary of configuration options for the style import.
+
+See https://github.com/mapbox/mapbox-maps-ios/blob/main/Sources/MapboxMaps/Documentation.docc/Migrate%20to%20v11.md#21-the-mapbox-standard-style
+
+
+
+
+
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/StyleSheet.md b/node_modules/@rnmapbox/maps/docs/StyleSheet.md
new file mode 100644
index 0000000..71e7bec
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/StyleSheet.md
@@ -0,0 +1,226 @@
+# StyleSheet
+
+StyleSheet is written as a JS object.
+See [Mapbox expression specs](https://docs.mapbox.com/mapbox-gl-js/style-spec/#expressions) for reference on
+expressions.
+
+## Style Functions
+
+### Zoom based Expressions
+
+This is a value function defining a style value that changes as the zoom level changes. The layout and paint attribute
+properties of the layer can be set to style function objects. Use a camera function to create the illusion of depth and
+control data density.
+
+```typescript
+// color would change based on zoom level keys.
+[
+ 'interpolate',
+ ['exponential', 1.5],
+ ['zoom'],
+ 0, 'blue',
+ 10, 'green',
+ 20, 'yellow',
+];
+
+// Example of use inside stylesheet
+{
+ fillColor: ['step', ['zoom'], 'blue', 20, 'green'];
+}
+```
+
+### Attribute based Expressions
+
+This is a value function defining a style value that changes with its properties. The layout and paint attribute
+properties of the layer can be set to style function objects. Use source functions to visually differentiate types of
+features within the same layer or create data visualizations.
+
+```typescript
+// would color the layer based the property rating=[1, 5]
+[
+ 'step',
+ ['get', 'rating'],
+ 'red',
+ 2, 'orange',
+ 3, 'yellow',
+ 4, 'yellowgreen',
+ 5, 'green',
+];
+
+// Example of use inside stylesheet
+{
+ circleColor: [
+ 'step',
+ ['get', 'rating'],
+ 'red',
+ 2, 'orange',
+ 3, 'yellow',
+ 4, 'yellowgreen',
+ 5, 'green',
+ ];
+}
+```
+
+### Nested Expressions
+
+This is a value function defining a style value that changes with the feature attributes at each map zoom level. The
+layout and paint attribute properties of the layer can be set to style function objects. Use composite functions to
+allow the appearance of a map feature to change with both its attributes and the map zoom level. Note that support for
+composite functions is not yet complete in the Android/iOS SDK's.
+
+```typescript
+// would change based on the zoom level and rating value
+// {zoom_level}: [{value}, {style_value}]
+[
+ 'step',
+ ['zoom'],
+ ['step', ['get', 'rating'], 0, 5, 5],
+ 20,
+ ['step', ['get', 'rating'], 0, 5, 20],
+];
+
+{
+ circleRadius: [
+ 'step',
+ ['zoom'],
+ ['step', ['get', 'rating'], 0, 5, 5],
+ 20,
+ ['step', ['get', 'rating'], 0, 5, 20],
+ ];
+}
+```
+
+## StyleSheet Examples
+
+```tsx
+const styles = {
+ buildings: {
+ fillColor: 'blue',
+ },
+ street: {
+ lineColor: 'green',
+ }
+};
+
+// ...
+
+
+< MapboxGL.FillLayer
+ style={styles.street}
+ // ...
+/>
+```
+
+```tsx
+const layerStyles = {
+ singlePoint: {
+ circleColor: 'green',
+ circleOpacity: 0.84,
+ circleStrokeWidth: 2,
+ circleStrokeColor: 'white',
+ circleRadius: 5,
+ },
+
+ clusteredPoints: {
+ circleColor: [
+ 'interpolate',
+ ['exponential', 1.5],
+ ['get', 'point_count'],
+ 25, 'yellow',
+ 50, 'red',
+ 75, 'blue',
+ 100, 'orange',
+ 300, 'pink',
+ 750, 'white',
+ ],
+
+ circleRadius: [
+ 'interpolate',
+ ['exponential', 1.5],
+ ['get', 'point_count'],
+ [0, 15],
+ [100, 20],
+ [750, 30],
+ ],
+
+ circleOpacity: 0.84,
+ circleStrokeWidth: 2,
+ circleStrokeColor: 'white',
+ },
+
+ clusterCount: {
+ textField: ['get', 'point_count'],
+ textSize: 12,
+ },
+};
+
+// ...
+
+
+
+< MapboxGL.CircleLayer
+ id='clusteredPoints'
+ belowLayerID='pointCount'
+ filter={['has', 'point_count'
+ ]
+ }
+ style={layerStyles.clusteredPoints}
+/>
+
+< MapboxGL.CircleLayer
+ id='singlePoint'
+ filter={['!has', 'point_count'
+ ]
+ }
+ style={layerStyles.singlePoint}
+/>
+```
+
+```tsx
+const layerStyles = {
+ building: {
+ fillExtrusionOpacity: 1,
+ fillExtrusionHeight: ['get', 'height'],
+ fillExtrusionBase: ['get', 'min_height'],
+ fillExtrusionColor: [
+ 'interpolate',
+ ['exponential', 1.5],
+ ['get', 'height'],
+ [0, 'white'],
+ [50, 'blue'],
+ [100, 'red'],
+ ],
+ fillExtrusionColorTransition: {duration: 2000, delay: 0},
+ },
+ streets: {
+ lineColor: 'blue',
+ lineWidth: 2,
+ lineOpacity: 0.50,
+ lineJoin: MapboxGL.LineJoin.Round,
+ lineCap: MapboxGL.LineCap.Round,
+ lineDasharray: [2, 2]
+ }
+};
+
+// ...
+
+
+
+< MapboxGL.LineLayer
+ id='streetLineColor'
+ sourceLayerID='road'
+ minZoomLevel={14}
+ belowLayerID='building3d'
+ style={layerStyles.streets}
+/>
+```
diff --git a/node_modules/@rnmapbox/maps/docs/SymbolLayer.md b/node_modules/@rnmapbox/maps/docs/SymbolLayer.md
new file mode 100644
index 0000000..7f9f176
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/SymbolLayer.md
@@ -0,0 +1,1889 @@
+
+
+ Mapbox spec: [symbol](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#symbol)
+
+
+```tsx
+import { SymbolLayer } from '@rnmapbox/maps';
+
+SymbolLayer
+
+```
+SymbolLayer is a style layer that renders icon and text labels at points or along lines on the map.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+_required_
+A string that uniquely identifies the source in the style to which it is added.
+
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing layer in the style. Does not create a new layer.
+
+
+
+### sourceID
+
+```tsx
+string
+```
+The source from which to obtain the data to style.
+If the source has not yet been added to the current style, the behavior is undefined.
+Inferred from parent source only if the layer is a direct child to it.
+
+ _defaults to:_ `Mapbox.StyleSource.DefaultSourceID`
+
+
+### sourceLayerID
+
+```tsx
+string
+```
+Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style.
+
+
+
+### aboveLayerID
+
+```tsx
+string
+```
+Inserts a layer above aboveLayerID.
+
+
+
+### belowLayerID
+
+```tsx
+string
+```
+Inserts a layer below belowLayerID
+
+
+
+### layerIndex
+
+```tsx
+number
+```
+Inserts a layer at a specified index
+
+
+
+### filter
+
+```tsx
+FilterExpression
+```
+Filter only the features in the source layer that satisfy a condition that you define
+
+
+
+### minZoomLevel
+
+```tsx
+number
+```
+The minimum zoom level at which the layer gets parsed and appears.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+The maximum zoom level at which the layer gets parsed and appears.
+
+
+
+### slot
+
+```tsx
+'bottom' | 'middle' | 'top'
+```
+The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.
+
+v11 only
+
+
+
+### style
+
+```tsx
+SymbolLayerStyleProps
+```
+_required_
+Customizable style attributes
+
+
+
+### children
+
+```tsx
+JSX.Element | JSX.Element[]
+```
+@deprecated passed children used to create an image with id of symbol in style and also set the iconImageName property accordingly.
+This is now deprecated, use Image component instead.
+
+
+
+
+
+
+
+
+
+## styles
+
+* symbolPlacement
+* symbolSpacing
+* symbolAvoidEdges
+* symbolSortKey
+* symbolZOrder
+* iconAllowOverlap
+* iconIgnorePlacement
+* iconOptional
+* iconRotationAlignment
+* iconSize
+* iconTextFit
+* iconTextFitPadding
+* iconImage
+* iconRotate
+* iconPadding
+* iconKeepUpright
+* iconOffset
+* iconAnchor
+* iconPitchAlignment
+* textPitchAlignment
+* textRotationAlignment
+* textField
+* textFont
+* textSize
+* textMaxWidth
+* textLineHeight
+* textLetterSpacing
+* textJustify
+* textRadialOffset
+* textVariableAnchor
+* textAnchor
+* textMaxAngle
+* textWritingMode
+* textRotate
+* textPadding
+* textKeepUpright
+* textTransform
+* textOffset
+* textAllowOverlap
+* textIgnorePlacement
+* textOptional
+* visibility
+* iconOpacity
+* iconColor
+* iconHaloColor
+* iconHaloWidth
+* iconHaloBlur
+* iconTranslate
+* iconTranslateAnchor
+* textOpacity
+* textColor
+* textHaloColor
+* textHaloWidth
+* textHaloBlur
+* textTranslate
+* textTranslateAnchor
+
+___
+
+### symbolPlacement
+Name: `symbolPlacement`
+
+Mapbox spec: [symbol-placement](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-symbol-placement)
+
+#### Description
+Label placement relative to its geometry.
+
+#### Type
+`enum`
+#### Default Value
+`point`
+
+#### Supported Values
+**point** - The label is placed at the point where the geometry is located.
+**line** - The label is placed along the line of the geometry. Can only be used on `LineString` and `Polygon` geometries.
+**line-center** - The label is placed at the center of the line of the geometry. Can only be used on `LineString` and `Polygon` geometries. Note that a single feature in a vector tile may contain multiple line geometries.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### symbolSpacing
+Name: `symbolSpacing`
+
+Mapbox spec: [symbol-spacing](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-symbol-spacing)
+
+#### Description
+Distance between two symbol anchors.
+
+#### Type
+`number`
+#### Default Value
+`250`
+
+#### Units
+`pixels`
+
+#### Minimum
+`1`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### symbolAvoidEdges
+Name: `symbolAvoidEdges`
+
+Mapbox spec: [symbol-avoid-edges](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-symbol-avoid-edges)
+
+#### Description
+If true, the symbols will not cross tile edges to avoid mutual collisions. Recommended in layers that don't have enough padding in the vector tile to prevent collisions, or if it is a point symbol layer placed after a line symbol layer. When using a client that supports global collision detection, like Mapbox GL JS version 0.42.0 or greater, enabling this property is not needed to prevent clipped labels at tile boundaries.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### symbolSortKey
+Name: `symbolSortKey`
+
+Mapbox spec: [symbol-sort-key](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-symbol-sort-key)
+
+#### Description
+Sorts features in ascending order based on this value. Features with lower sort keys are drawn and placed first. When `iconAllowOverlap` or `textAllowOverlap` is `false`, features with a lower sort key will have priority during placement. When `iconAllowOverlap` or `textAllowOverlap` is set to `true`, features with a higher sort key will overlap over features with a lower sort key.
+
+#### Type
+`number`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### symbolZOrder
+Name: `symbolZOrder`
+
+Mapbox spec: [symbol-z-order](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-symbol-z-order)
+
+#### Description
+Determines whether overlapping symbols in the same layer are rendered in the order that they appear in the data source or by their yPosition relative to the viewport. To control the order and prioritization of symbols otherwise, use `symbolSortKey`.
+
+#### Type
+`enum`
+#### Default Value
+`auto`
+
+#### Supported Values
+**auto** - Sorts symbols by `symbol-sort-key` if set. Otherwise, sorts symbols by their y-position relative to the viewport if `icon-allow-overlap` or `text-allow-overlap` is set to `true` or `icon-ignore-placement` or `text-ignore-placement` is `false`.
+**viewport-y** - Sorts symbols by their y-position relative to the viewport if `icon-allow-overlap` or `text-allow-overlap` is set to `true` or `icon-ignore-placement` or `text-ignore-placement` is `false`.
+**source** - Sorts symbols by `symbol-sort-key` if set. Otherwise, no sorting is applied; symbols are rendered in the same order as the source data.
+
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconAllowOverlap
+Name: `iconAllowOverlap`
+
+Mapbox spec: [icon-allow-overlap](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-allow-overlap)
+
+#### Description
+If true, the icon will be visible even if it collides with other previously drawn symbols.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconIgnorePlacement
+Name: `iconIgnorePlacement`
+
+Mapbox spec: [icon-ignore-placement](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-ignore-placement)
+
+#### Description
+If true, other symbols can be visible even if they collide with the icon.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconOptional
+Name: `iconOptional`
+
+Mapbox spec: [icon-optional](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-optional)
+
+#### Description
+If true, text will display without their corresponding icons when the icon collides with other symbols and the text does not.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`iconImage, textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconRotationAlignment
+Name: `iconRotationAlignment`
+
+Mapbox spec: [icon-rotation-alignment](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-rotation-alignment)
+
+#### Description
+In combination with `symbolPlacement`, determines the rotation behavior of icons.
+
+#### Type
+`enum`
+#### Default Value
+`auto`
+
+#### Supported Values
+**map** - When `symbol-placement` is set to `point`, aligns icons east-west. When `symbol-placement` is set to `line` or `line-center`, aligns icon x-axes with the line.
+**viewport** - Produces icons whose x-axes are aligned with the x-axis of the viewport, regardless of the value of `symbol-placement`.
+**auto** - When `symbol-placement` is set to `point`, this is equivalent to `viewport`. When `symbol-placement` is set to `line` or `line-center`, this is equivalent to `map`.
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconSize
+Name: `iconSize`
+
+Mapbox spec: [icon-size](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-size)
+
+#### Description
+Scales the original size of the icon by the provided factor. The new pixel size of the image will be the original pixel size multiplied by `iconSize`. 1 is the original size; 3 triples the size of the image.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Units
+`factor of the original icon size`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconTextFit
+Name: `iconTextFit`
+
+Mapbox spec: [icon-text-fit](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-text-fit)
+
+#### Description
+Scales the icon to fit around the associated text.
+
+#### Type
+`enum`
+#### Default Value
+`none`
+
+#### Supported Values
+**none** - The icon is displayed at its intrinsic aspect ratio.
+**width** - The icon is scaled in the x-dimension to fit the width of the text.
+**height** - The icon is scaled in the y-dimension to fit the height of the text.
+**both** - The icon is scaled in both x- and y-dimensions.
+
+
+#### Requires
+`iconImage, textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconTextFitPadding
+Name: `iconTextFitPadding`
+
+Mapbox spec: [icon-text-fit-padding](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-text-fit-padding)
+
+#### Description
+Size of the additional area added to dimensions determined by `iconTextFit`, in clockwise order: top, right, bottom, left.
+
+#### Type
+`array`
+#### Default Value
+`[0,0,0,0]`
+
+#### Units
+`pixels`
+
+
+#### Requires
+`iconImage, textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconImage
+Name: `iconImage`
+
+Mapbox spec: [icon-image](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-image)
+
+#### Description
+Name of image in sprite to use for drawing an image background.
+
+#### Type
+`resolvedImage`
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconRotate
+Name: `iconRotate`
+
+Mapbox spec: [icon-rotate](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-rotate)
+
+#### Description
+Rotates the icon clockwise.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`degrees`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconPadding
+Name: `iconPadding`
+
+Mapbox spec: [icon-padding](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-padding)
+
+#### Description
+Size of the additional area around the icon bounding box used for detecting symbol collisions.
+
+#### Type
+`number`
+#### Default Value
+`2`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconKeepUpright
+Name: `iconKeepUpright`
+
+Mapbox spec: [icon-keep-upright](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-keep-upright)
+
+#### Description
+If true, the icon may be flipped to prevent it from being rendered upsideDown.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### iconOffset
+Name: `iconOffset`
+
+Mapbox spec: [icon-offset](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-offset)
+
+#### Description
+Offset distance of icon from its anchor. Positive values indicate right and down, while negative values indicate left and up. Each component is multiplied by the value of `iconSize` to obtain the final offset in pixels. When combined with `iconRotate` the offset will be as if the rotated direction was up.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconAnchor
+Name: `iconAnchor`
+
+Mapbox spec: [icon-anchor](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-anchor)
+
+#### Description
+Part of the icon placed closest to the anchor.
+
+#### Type
+`enum`
+#### Default Value
+`center`
+
+#### Supported Values
+**center** - The center of the icon is placed closest to the anchor.
+**left** - The left side of the icon is placed closest to the anchor.
+**right** - The right side of the icon is placed closest to the anchor.
+**top** - The top of the icon is placed closest to the anchor.
+**bottom** - The bottom of the icon is placed closest to the anchor.
+**top-left** - The top left corner of the icon is placed closest to the anchor.
+**top-right** - The top right corner of the icon is placed closest to the anchor.
+**bottom-left** - The bottom left corner of the icon is placed closest to the anchor.
+**bottom-right** - The bottom right corner of the icon is placed closest to the anchor.
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### iconPitchAlignment
+Name: `iconPitchAlignment`
+
+Mapbox spec: [icon-pitch-alignment](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-icon-pitch-alignment)
+
+#### Description
+Orientation of icon when map is pitched.
+
+#### Type
+`enum`
+#### Default Value
+`auto`
+
+#### Supported Values
+**map** - The icon is aligned to the plane of the map.
+**viewport** - The icon is aligned to the plane of the viewport.
+**auto** - Automatically matches the value of `icon-rotation-alignment`.
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textPitchAlignment
+Name: `textPitchAlignment`
+
+Mapbox spec: [text-pitch-alignment](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-pitch-alignment)
+
+#### Description
+Orientation of text when map is pitched.
+
+#### Type
+`enum`
+#### Default Value
+`auto`
+
+#### Supported Values
+**map** - The text is aligned to the plane of the map.
+**viewport** - The text is aligned to the plane of the viewport.
+**auto** - Automatically matches the value of `text-rotation-alignment`.
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textRotationAlignment
+Name: `textRotationAlignment`
+
+Mapbox spec: [text-rotation-alignment](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-rotation-alignment)
+
+#### Description
+In combination with `symbolPlacement`, determines the rotation behavior of the individual glyphs forming the text.
+
+#### Type
+`enum`
+#### Default Value
+`auto`
+
+#### Supported Values
+**map** - When `symbol-placement` is set to `point`, aligns text east-west. When `symbol-placement` is set to `line` or `line-center`, aligns text x-axes with the line.
+**viewport** - Produces glyphs whose x-axes are aligned with the x-axis of the viewport, regardless of the value of `symbol-placement`.
+**auto** - When `symbol-placement` is set to `point`, this is equivalent to `viewport`. When `symbol-placement` is set to `line` or `line-center`, this is equivalent to `map`.
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textField
+Name: `textField`
+
+Mapbox spec: [text-field](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-field)
+
+#### Description
+Value to use for a text label. If a plain `string` is provided, it will be treated as a `formatted` with default/inherited formatting options. SDF images are not supported in formatted text and will be ignored.
+
+#### Type
+`formatted`
+#### Default Value
+``
+
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textFont
+Name: `textFont`
+
+Mapbox spec: [text-font](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-font)
+
+#### Description
+Font stack to use for displaying text.
+
+#### Type
+`array`
+#### Default Value
+`[Open Sans Regular,Arial Unicode MS Regular]`
+
+
+#### Requires
+`textField`
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textSize
+Name: `textSize`
+
+Mapbox spec: [text-size](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-size)
+
+#### Description
+Font size.
+
+#### Type
+`number`
+#### Default Value
+`16`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textMaxWidth
+Name: `textMaxWidth`
+
+Mapbox spec: [text-max-width](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-max-width)
+
+#### Description
+The maximum line width for text wrapping.
+
+#### Type
+`number`
+#### Default Value
+`10`
+
+#### Units
+`ems`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`textField`
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textLineHeight
+Name: `textLineHeight`
+
+Mapbox spec: [text-line-height](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-line-height)
+
+#### Description
+Text leading value for multiLine text.
+
+#### Type
+`number`
+#### Default Value
+`1.2`
+
+#### Units
+`ems`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textLetterSpacing
+Name: `textLetterSpacing`
+
+Mapbox spec: [text-letter-spacing](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-letter-spacing)
+
+#### Description
+Text tracking amount.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`ems`
+
+
+#### Requires
+`textField`
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textJustify
+Name: `textJustify`
+
+Mapbox spec: [text-justify](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-justify)
+
+#### Description
+Text justification options.
+
+#### Type
+`enum`
+#### Default Value
+`center`
+
+#### Supported Values
+**auto** - The text is aligned towards the anchor position.
+**left** - The text is aligned to the left.
+**center** - The text is centered.
+**right** - The text is aligned to the right.
+
+
+#### Requires
+`textField`
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textRadialOffset
+Name: `textRadialOffset`
+
+Mapbox spec: [text-radial-offset](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-radial-offset)
+
+#### Description
+Radial offset of text, in the direction of the symbol's anchor. Useful in combination with `textVariableAnchor`, which defaults to using the twoDimensional `textOffset` if present.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`ems`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textVariableAnchor
+Name: `textVariableAnchor`
+
+Mapbox spec: [text-variable-anchor](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-variable-anchor)
+
+#### Description
+To increase the chance of placing highPriority labels on the map, you can provide an array of `textAnchor` locations: the renderer will attempt to place the label at each location, in order, before moving onto the next label. Use `textJustify: auto` to choose justification based on anchor position. To apply an offset, use the `textRadialOffset` or the twoDimensional `textOffset`.
+
+#### Type
+`array`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textAnchor
+Name: `textAnchor`
+
+Mapbox spec: [text-anchor](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-anchor)
+
+#### Description
+Part of the text placed closest to the anchor.
+
+#### Type
+`enum`
+#### Default Value
+`center`
+
+#### Supported Values
+**center** - The center of the text is placed closest to the anchor.
+**left** - The left side of the text is placed closest to the anchor.
+**right** - The right side of the text is placed closest to the anchor.
+**top** - The top of the text is placed closest to the anchor.
+**bottom** - The bottom of the text is placed closest to the anchor.
+**top-left** - The top left corner of the text is placed closest to the anchor.
+**top-right** - The top right corner of the text is placed closest to the anchor.
+**bottom-left** - The bottom left corner of the text is placed closest to the anchor.
+**bottom-right** - The bottom right corner of the text is placed closest to the anchor.
+
+
+#### Requires
+`textField`
+
+#### Disabled By
+`textVariableAnchor`
+
+#### Supported Style Functions
+`camera`
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textMaxAngle
+Name: `textMaxAngle`
+
+Mapbox spec: [text-max-angle](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-max-angle)
+
+#### Description
+Maximum angle change between adjacent characters.
+
+#### Type
+`number`
+#### Default Value
+`45`
+
+#### Units
+`degrees`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textWritingMode
+Name: `textWritingMode`
+
+Mapbox spec: [text-writing-mode](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-writing-mode)
+
+#### Description
+The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value. For symbol with point placement, the order of elements in an array define priority order for the placement of an orientation variant. For symbol with line placement, the default text writing mode is either ['horizontal', 'vertical'] or ['vertical', 'horizontal'], the order doesn't affect the placement.
+
+#### Type
+`array`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textRotate
+Name: `textRotate`
+
+Mapbox spec: [text-rotate](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-rotate)
+
+#### Description
+Rotates the text clockwise.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`degrees`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textPadding
+Name: `textPadding`
+
+Mapbox spec: [text-padding](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-padding)
+
+#### Description
+Size of the additional area around the text bounding box used for detecting symbol collisions.
+
+#### Type
+`number`
+#### Default Value
+`2`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textKeepUpright
+Name: `textKeepUpright`
+
+Mapbox spec: [text-keep-upright](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-keep-upright)
+
+#### Description
+If true, the text may be flipped vertically to prevent it from being rendered upsideDown.
+
+#### Type
+`boolean`
+#### Default Value
+`true`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textTransform
+Name: `textTransform`
+
+Mapbox spec: [text-transform](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-transform)
+
+#### Description
+Specifies how to capitalize text, similar to the CSS `textTransform` property.
+
+#### Type
+`enum`
+#### Default Value
+`none`
+
+#### Supported Values
+**none** - The text is not altered.
+**uppercase** - Forces all letters to be displayed in uppercase.
+**lowercase** - Forces all letters to be displayed in lowercase.
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textOffset
+Name: `textOffset`
+
+Mapbox spec: [text-offset](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-offset)
+
+#### Description
+Offset distance of text from its anchor. Positive values indicate right and down, while negative values indicate left and up. If used with textVariableAnchor, input values will be taken as absolute values. Offsets along the x and yAxis will be applied automatically based on the anchor position.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`ems`
+
+
+#### Requires
+`textField`
+
+#### Disabled By
+`textRadialOffset`
+
+#### Expression
+
+Parameters: `zoom, feature`
+
+___
+
+### textAllowOverlap
+Name: `textAllowOverlap`
+
+Mapbox spec: [text-allow-overlap](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-allow-overlap)
+
+#### Description
+If true, the text will be visible even if it collides with other previously drawn symbols.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textIgnorePlacement
+Name: `textIgnorePlacement`
+
+Mapbox spec: [text-ignore-placement](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-ignore-placement)
+
+#### Description
+If true, other symbols can be visible even if they collide with the text.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textOptional
+Name: `textOptional`
+
+Mapbox spec: [text-optional](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-text-optional)
+
+#### Description
+If true, icons will display without their corresponding text when the text collides with other symbols and the icon does not.
+
+#### Type
+`boolean`
+#### Default Value
+`false`
+
+
+#### Requires
+`textField, iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### visibility
+Name: `visibility`
+
+Mapbox spec: [visibility](https://docs.mapbox.com/style-spec/reference/layers/#layout-symbol-visibility)
+
+#### Description
+Whether this layer is displayed.
+
+#### Type
+`enum`
+#### Default Value
+`visible`
+
+#### Supported Values
+**visible** - The layer is shown.
+**none** - The layer is not shown.
+
+
+#### Expression
+
+Parameters: ``
+
+___
+
+### iconOpacity
+Name: `iconOpacity`
+
+Mapbox spec: [icon-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-opacity)
+
+#### Description
+The opacity at which the icon will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### iconOpacityTransition
+Name: `iconOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconColor
+Name: `iconColor`
+
+Mapbox spec: [icon-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-color)
+
+#### Description
+The color of the icon. This can only be used with [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/).
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### iconColorTransition
+Name: `iconColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconHaloColor
+Name: `iconHaloColor`
+
+Mapbox spec: [icon-halo-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-halo-color)
+
+#### Description
+The color of the icon's halo. Icon halos can only be used with [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/).
+
+#### Type
+`color`
+#### Default Value
+`rgba(0, 0, 0, 0)`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### iconHaloColorTransition
+Name: `iconHaloColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconHaloColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconHaloWidth
+Name: `iconHaloWidth`
+
+Mapbox spec: [icon-halo-width](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-halo-width)
+
+#### Description
+Distance of halo to the icon outline.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### iconHaloWidthTransition
+Name: `iconHaloWidthTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconHaloWidth property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconHaloBlur
+Name: `iconHaloBlur`
+
+Mapbox spec: [icon-halo-blur](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-halo-blur)
+
+#### Description
+Fade out the halo towards the outside.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### iconHaloBlurTransition
+Name: `iconHaloBlurTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconHaloBlur property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconTranslate
+Name: `iconTranslate`
+
+Mapbox spec: [icon-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-translate)
+
+#### Description
+Distance that the icon's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Requires
+`iconImage`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### iconTranslateTransition
+Name: `iconTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s iconTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### iconTranslateAnchor
+Name: `iconTranslateAnchor`
+
+Mapbox spec: [icon-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-icon-translate-anchor)
+
+#### Description
+Controls the frame of reference for `iconTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - Icons are translated relative to the map.
+**viewport** - Icons are translated relative to the viewport.
+
+
+#### Requires
+`iconImage, iconTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
+___
+
+### textOpacity
+Name: `textOpacity`
+
+Mapbox spec: [text-opacity](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-opacity)
+
+#### Description
+The opacity at which the text will be drawn.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1`
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### textOpacityTransition
+Name: `textOpacityTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textOpacity property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textColor
+Name: `textColor`
+
+Mapbox spec: [text-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-color)
+
+#### Description
+The color with which the text will be drawn.
+
+#### Type
+`color`
+#### Default Value
+`#000000`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### textColorTransition
+Name: `textColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textHaloColor
+Name: `textHaloColor`
+
+Mapbox spec: [text-halo-color](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-halo-color)
+
+#### Description
+The color of the text's halo, which helps it stand out from backgrounds.
+
+#### Type
+`color`
+#### Default Value
+`rgba(0, 0, 0, 0)`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### textHaloColorTransition
+Name: `textHaloColorTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textHaloColor property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textHaloWidth
+Name: `textHaloWidth`
+
+Mapbox spec: [text-halo-width](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-halo-width)
+
+#### Description
+Distance of halo to the font outline. Max text halo width is 1/4 of the fontSize.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### textHaloWidthTransition
+Name: `textHaloWidthTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textHaloWidth property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textHaloBlur
+Name: `textHaloBlur`
+
+Mapbox spec: [text-halo-blur](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-halo-blur)
+
+#### Description
+The halo's fadeout distance towards the outside.
+
+#### Type
+`number`
+#### Default Value
+`0`
+
+#### Units
+`pixels`
+
+#### Minimum
+`0`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom, feature, feature-state, measure-light`
+___
+
+### textHaloBlurTransition
+Name: `textHaloBlurTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textHaloBlur property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textTranslate
+Name: `textTranslate`
+
+Mapbox spec: [text-translate](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-translate)
+
+#### Description
+Distance that the text's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up.
+
+#### Type
+`array`
+#### Default Value
+`[0,0]`
+
+#### Units
+`pixels`
+
+
+#### Requires
+`textField`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### textTranslateTransition
+Name: `textTranslateTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s textTranslate property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
+___
+
+### textTranslateAnchor
+Name: `textTranslateAnchor`
+
+Mapbox spec: [text-translate-anchor](https://docs.mapbox.com/style-spec/reference/layers/#paint-symbol-text-translate-anchor)
+
+#### Description
+Controls the frame of reference for `textTranslate`.
+
+#### Type
+`enum`
+#### Default Value
+`map`
+
+#### Supported Values
+**map** - The text is translated relative to the map.
+**viewport** - The text is translated relative to the viewport.
+
+
+#### Requires
+`textField, textTranslate`
+
+#### Expression
+
+Parameters: `zoom`
+
diff --git a/node_modules/@rnmapbox/maps/docs/Terrain.md b/node_modules/@rnmapbox/maps/docs/Terrain.md
new file mode 100644
index 0000000..bfd9b08
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Terrain.md
@@ -0,0 +1,117 @@
+
+
+ Mapbox spec: [terrain](https://docs.mapbox.com/mapbox-gl-js/style-spec/layers/#terrain)
+
+
+```tsx
+import { Terrain } from '@rnmapbox/maps';
+
+Terrain
+
+```
+
+
+## props
+
+
+### sourceID
+
+```tsx
+string
+```
+Name of a source of raster_dem type to be used for terrain elevation.
+
+
+
+### exaggeration
+
+```tsx
+Value
+```
+Deprecated, use exaggeration in style instead
+
+
+
+### style
+
+```tsx
+TerrainLayerStyleProps
+```
+Customizable style attributes
+
+
+
+
+
+
+
+
+
+## styles
+
+* source
+* exaggeration
+
+___
+
+### source
+Name: `source`
+
+Mapbox spec: [source](https://docs.mapbox.com/style-spec/reference/layers/#source)
+
+#### Description
+Name of a source of `raster_dem` type to be used for terrain elevation.
+
+#### Type
+`string`
+
+
+
+___
+
+### exaggeration
+Name: `exaggeration`
+
+Mapbox spec: [exaggeration](https://docs.mapbox.com/style-spec/reference/layers/#exaggeration)
+
+#### Description
+Exaggerates the elevation of the terrain by multiplying the data from the DEM with this value.
+
+#### Type
+`number`
+#### Default Value
+`1`
+
+#### Minimum
+`0`
+
+
+#### Maximum
+`1000`
+
+#### Requires
+`source`
+
+#### Expression
+
+Parameters: `zoom`
+___
+
+### exaggerationTransition
+Name: `exaggerationTransition`
+
+#### Description
+
+The transition affecting any changes to this layer’s exaggeration property.
+
+#### Type
+
+`{ duration, delay }`
+
+#### Units
+`milliseconds`
+
+#### Default Value
+`{duration: 300, delay: 0}`
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/UserLocation.md b/node_modules/@rnmapbox/maps/docs/UserLocation.md
new file mode 100644
index 0000000..a5f0708
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/UserLocation.md
@@ -0,0 +1,149 @@
+
+
+
+
+```tsx
+import { UserLocation } from '@rnmapbox/maps';
+
+UserLocation
+
+```
+
+
+## props
+
+
+### androidRenderMode
+
+```tsx
+'normal' | 'compass' | 'gps'
+```
+native/android only render mode
+
+ - normal: just a circle
+ - compass: triangle with heading
+ - gps: large arrow
+
+@platform android
+
+
+
+### animated
+
+```tsx
+boolean
+```
+Whether location icon is animated between updates
+
+ _defaults to:_ `true`
+
+
+### children
+
+```tsx
+ReactElement | ReactElement[]
+```
+Custom location icon of type mapbox-gl-native components
+
+
+
+### minDisplacement
+
+```tsx
+number
+```
+Minimum amount of movement before GPS location is updated in meters
+
+ _defaults to:_ `0`
+[Set Displacement](../examples/UserLocation/SetDisplacement)
+
+### onPress
+
+```tsx
+func
+```
+Callback that is triggered on location icon press
+*signature:*`() => void`
+
+[Show Map](../examples/Map/ShowMap)
+
+### onUpdate
+
+```tsx
+func
+```
+Callback that is triggered on location update
+*signature:*`(location:Location) => void`
+
+[User Location Updates](../examples/UserLocation/UserLocationUpdates)
+
+### renderMode
+
+```tsx
+UserLocationRenderMode
+```
+@deprecated use LocationPuck component instead of UserLocationRenderMode.Native
+Which render mode to use.
+
+ _defaults to:_ `UserLocationRenderMode.Normal`
+[User Location Render Mode](../examples/UserLocation/UserLocationRenderMode)
+
+### requestsAlwaysUse
+
+```tsx
+boolean
+```
+Request the always location permission, and listen to the location even when the app is in background
+
+@platform ios
+
+ _defaults to:_ `false`
+
+
+### showsUserHeadingIndicator
+
+```tsx
+boolean
+```
+Show or hide small arrow which indicates direction the device is pointing relative to north.
+
+ _defaults to:_ `false`
+
+
+### visible
+
+```tsx
+boolean
+```
+Whether location icon is visible
+
+ _defaults to:_ `true`
+[User Location Render Mode](../examples/UserLocation/UserLocationRenderMode)
+
+
+
+
+
+
+## methods
+### setLocationManager({ running }: { running?: boolean })
+
+Whether to start or stop listening to the locationManager
Notice, that listening will start automatically when either `onUpdate` or `visible` are set
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `{ running }: { running?: boolean }` | `{running?:boolean}` | `Yes` | undefined |
+
+
+### needsLocationManagerRunning()
+
+If locationManager should be running
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/VectorSource.md b/node_modules/@rnmapbox/maps/docs/VectorSource.md
new file mode 100644
index 0000000..0f36e17
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/VectorSource.md
@@ -0,0 +1,149 @@
+
+
+
+
+```tsx
+import { VectorSource } from '@rnmapbox/maps';
+
+VectorSource
+
+```
+VectorSource is a map content source that supplies tiled vector data in Mapbox Vector Tile format to be shown on the map.
+The location of and metadata about the tiles are defined either by an option dictionary or by an external file that conforms to the TileJSON specification.
+
+## props
+
+
+### id
+
+```tsx
+string
+```
+A string that uniquely identifies the source.
+
+ _defaults to:_ `MapboxGL.StyleSource.DefaultSourceID`
+
+
+### existing
+
+```tsx
+boolean
+```
+The id refers to en existing source in the style. Does not create a new source.
+
+
+
+### url
+
+```tsx
+string
+```
+A URL to a TileJSON configuration file describing the source’s contents and other metadata.
+
+
+
+### tileUrlTemplates
+
+```tsx
+Array
+```
+An array of tile URL templates. If multiple endpoints are specified, clients may use any combination of endpoints.
+Example: https://example.com/vector-tiles/{z}/{x}/{y}.pbf
+
+[Third Party Vector Source](../examples/LineLayer/ThirdPartyVectorSource)
+
+### minZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the minimum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+maxZoomLevel, if specified. The default value for this option is 0.
+
+
+
+### maxZoomLevel
+
+```tsx
+number
+```
+An unsigned integer that specifies the maximum zoom level at which to display tiles from the source.
+The value should be between 0 and 22, inclusive, and less than
+minZoomLevel, if specified. The default value for this option is 22.
+
+
+
+### tms
+
+```tsx
+boolean
+```
+Influences the y direction of the tile coordinates. (tms inverts y axis)
+
+
+
+### attribution
+
+```tsx
+string
+```
+An HTML or literal text string defining the buttons to be displayed in an action sheet when the
+source is part of a map view’s style and the map view’s attribution button is pressed.
+
+
+
+### onPress
+
+```tsx
+func
+```
+Source press listener, gets called when a user presses one of the children layers only
+if that layer has a higher z-index than another source layers
+
+- `event`: `Object`
+- `event.features`: `Object[]` - the geojson features that have hit by the press (might be multiple)
+- `event.coordinates`: `Object` - the coordinates of the click
+- `event.point`: `Object` - the point of the click
+*signature:*`(event:OnPressEvent) => void`
+
+
+
+### hitbox
+
+```tsx
+type Hitbox = {
+ width: number; /* `width` of hitbox */
+ height: number; /* `height` of hitbox */
+}
+```
+Overrides the default touch hitbox(44x44 pixels) for the source layers
+
+
+
+### children
+
+```tsx
+React.ReactElement | React.ReactElement[]
+```
+FIX ME NO DESCRIPTION
+
+
+
+
+
+
+
+
+## methods
+### onPress(event)
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `event` | `NativeSyntheticEvent` | `Yes` | undefined |
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/Viewport.md b/node_modules/@rnmapbox/maps/docs/Viewport.md
new file mode 100644
index 0000000..6a642cf
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/Viewport.md
@@ -0,0 +1,89 @@
+
+
+
+
+```tsx
+import { Viewport } from '@rnmapbox/maps';
+
+Viewport
+
+```
+provides a structured approach to organizing camera management logic into states and transitions between them.
+
+At any given time, the viewport is either:
+ - idle
+ - in a state (camera is being managed by a ViewportState)
+ - transitioning between states
+
+See [android](https://docs.mapbox.com/android/maps/api/${ANDROID_SDK_VERSION}/mapbox-maps-android/com.mapbox.maps.plugin.viewport/viewport.html),
+[ios](https://docs.mapbox.com/ios/maps/api/${IOS_SDK_VERSION}/Viewport.html#/s:10MapboxMaps8ViewportC)
+
+## props
+
+
+### transitionsToIdleUponUserInteraction
+
+```tsx
+boolean
+```
+Indicates whether the Viewport should idle when the MapView receives touch input.
+
+Set this property to false to enable building custom ViewportStates that can work simultaneously with certain types of gestures.
+
+Defaults to true.
+
+
+
+### onStatusChanged
+
+```tsx
+func
+```
+Subscribes to status changes, will be called when the status changes.
+
+Observers are notified of status changes asynchronously on the main queue.
+This means that by the time the notification is delivered, the status may have already changed again.
+This behavior is necessary to allow observers to trigger further transitions while avoiding out-of-order
+delivery of status changed notifications.
+*signature:*`(event:{from: union, to: union, reason: union}) => void`
+
+
+
+
+
+
+
+
+## methods
+### getState()
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+### idle()
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+
+
+
+### transitionTo(state, transition)
+
+
+
+#### arguments
+| Name | Type | Required | Description |
+| ---- | :--: | :------: | :----------: |
+| `state` | `n/a` | `Yes` | undefined |
+| `transition` | `n/a` | `Yes` | undefined |
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/coordinates.md b/node_modules/@rnmapbox/maps/docs/coordinates.md
new file mode 100644
index 0000000..a7882e6
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/coordinates.md
@@ -0,0 +1,15 @@
+
+
+
+
+```tsx
+import { coordinates } from '@rnmapbox/maps';
+
+coordinates
+
+```
+Coorinates sent by locationManager
+
+
+
+
diff --git a/node_modules/@rnmapbox/maps/docs/docs.json b/node_modules/@rnmapbox/maps/docs/docs.json
new file mode 100644
index 0000000..e5da347
--- /dev/null
+++ b/node_modules/@rnmapbox/maps/docs/docs.json
@@ -0,0 +1,8448 @@
+{
+ "Annotation": {
+ "description": "",
+ "displayName": "Annotation",
+ "methods": [
+ {
+ "name": "onPress",
+ "docblock": null,
+ "modifiers": [],
+ "params": [
+ {
+ "name": "event",
+ "optional": false,
+ "type": {
+ "name": "OnPressEvent"
+ }
+ }
+ ],
+ "returns": null
+ },
+ {
+ "name": "symbolStyle",
+ "docblock": null,
+ "modifiers": [
+ "get"
+ ],
+ "params": [],
+ "returns": {
+ "type": {
+ "name": "union",
+ "raw": "SymbolLayerStyle | undefined",
+ "elements": [
+ {
+ "name": "SymbolLayerStyle"
+ },
+ {
+ "name": "undefined"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "animated",
+ "required": false,
+ "type": "boolean",
+ "default": "false",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "animationDuration",
+ "required": false,
+ "type": "number",
+ "default": "1000",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "animationEasingFunction",
+ "required": false,
+ "type": {
+ "name": "func",
+ "funcSignature": "(x:number) => number"
+ },
+ "default": "Easing.linear",
+ "description": "FIX ME NO DESCRIPTION\n*signature:*`(x:number) => number`"
+ },
+ {
+ "name": "coordinates",
+ "required": true,
+ "type": "Array",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "onPress",
+ "required": false,
+ "type": {
+ "name": "func",
+ "funcSignature": "(event:OnPressEvent) => void"
+ },
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION\n*signature:*`(event:OnPressEvent) => void`"
+ },
+ {
+ "name": "children",
+ "required": true,
+ "type": "ReactElement \\| ReactElement[]",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "object",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "icon",
+ "required": false,
+ "type": "string \\| number \\| object",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ],
+ "fileNameWithExt": "Annotation.tsx",
+ "relPath": "src/components/Annotation.tsx",
+ "name": "Annotation"
+ },
+ "Atmosphere": {
+ "description": "",
+ "displayName": "Atmosphere",
+ "methods": [],
+ "props": [
+ {
+ "name": "style",
+ "required": true,
+ "type": "AtmosphereLayerStyleProps",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ],
+ "fileNameWithExt": "Atmosphere.tsx",
+ "relPath": "src/components/Atmosphere.tsx",
+ "name": "Atmosphere",
+ "mbx": {
+ "name": "atmosphere"
+ },
+ "styles": [
+ {
+ "name": "range",
+ "type": "array",
+ "values": [],
+ "minimum": -20,
+ "maximum": 20,
+ "default": [
+ 0.5,
+ 10
+ ],
+ "description": "The start and end distance range in which fog fades from fully transparent to fully opaque. The distance to the point at the center of the map is defined as zero, so that negative range values are closer to the camera, and positive values are farther away.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "range",
+ "name": "range",
+ "namespace": null
+ }
+ },
+ {
+ "name": "color",
+ "type": "color",
+ "values": [],
+ "default": "#ffffff",
+ "description": "The color of the atmosphere region immediately below the horizon and within the `range` and above the horizon and within `horizonBlend`. Using opacity is recommended only for smoothly transitioning fog on/off as anything less than 100% opacity results in more tiles loaded and drawn.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "color",
+ "name": "color",
+ "namespace": null
+ }
+ },
+ {
+ "name": "highColor",
+ "type": "color",
+ "values": [],
+ "default": "#245cdf",
+ "description": "The color of the atmosphere region above the horizon, `highColor` extends further above the horizon than the `color` property and its spread can be controlled with `horizonBlend`. The opacity can be set to `0` to remove the high atmosphere color contribution.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "high-color",
+ "name": "high-color",
+ "namespace": null
+ }
+ },
+ {
+ "name": "spaceColor",
+ "type": "color",
+ "values": [],
+ "default": [
+ "interpolate",
+ [
+ "linear"
+ ],
+ [
+ "zoom"
+ ],
+ 4,
+ "#010b19",
+ 7,
+ "#367ab9"
+ ],
+ "description": "The color of the region above the horizon and after the end of the `horizonBlend` contribution. The opacity can be set to `0` to have a transparent background.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "space-color",
+ "name": "space-color",
+ "namespace": null
+ }
+ },
+ {
+ "name": "horizonBlend",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": [
+ "interpolate",
+ [
+ "linear"
+ ],
+ [
+ "zoom"
+ ],
+ 4,
+ 0.2,
+ 7,
+ 0.1
+ ],
+ "description": "Horizon blend applies a smooth fade from the color of the atmosphere to the color of space. A value of zero leaves a sharp transition from atmosphere to space. Increasing the value blends the color of atmosphere into increasingly high angles of the sky.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "horizon-blend",
+ "name": "horizon-blend",
+ "namespace": null
+ }
+ },
+ {
+ "name": "starIntensity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": [
+ "interpolate",
+ [
+ "linear"
+ ],
+ [
+ "zoom"
+ ],
+ 5,
+ 0.35,
+ 6,
+ 0
+ ],
+ "description": "A value controlling the star intensity where `0` will show no stars and `1` will show stars at their maximum intensity.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "measure-light"
+ ],
+ "relaxZoomRestriction": true
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "star-intensity",
+ "name": "star-intensity",
+ "namespace": null
+ }
+ }
+ ]
+ },
+ "BackgroundLayer": {
+ "description": "",
+ "displayName": "BackgroundLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the layer in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "MapboxGL.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "BackgroundLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "BackgroundLayer.tsx",
+ "relPath": "src/components/BackgroundLayer.tsx",
+ "name": "BackgroundLayer",
+ "mbx": {
+ "name": "background"
+ },
+ "styles": [
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-background-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "backgroundColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The color with which the background will be drawn.",
+ "requires": [],
+ "disabledBy": [
+ "backgroundPattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-background-background-color",
+ "name": "background-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "backgroundPattern",
+ "type": "resolvedImage",
+ "values": [],
+ "description": "Name of image in sprite to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-background-background-pattern",
+ "name": "background-pattern",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "backgroundOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity at which the background will be drawn.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-background-background-opacity",
+ "name": "background-opacity",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "Callout": {
+ "description": "Callout that displays information about a selected annotation near the annotation.",
+ "displayName": "Callout",
+ "methods": [],
+ "props": [
+ {
+ "name": "title",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "String that gets displayed in the default callout."
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "ViewStyle",
+ "default": "none",
+ "description": "Style property for the Animated.View wrapper, apply animations to this"
+ },
+ {
+ "name": "containerStyle",
+ "required": false,
+ "type": "ViewStyle",
+ "default": "none",
+ "description": "Style property for the native RNMBXCallout container, set at your own risk."
+ },
+ {
+ "name": "contentStyle",
+ "required": false,
+ "type": "ViewStyle",
+ "default": "none",
+ "description": "Style property for the content bubble."
+ },
+ {
+ "name": "tipStyle",
+ "required": false,
+ "type": "ViewStyle",
+ "default": "none",
+ "description": "Style property for the triangle tip under the content."
+ },
+ {
+ "name": "textStyle",
+ "required": false,
+ "type": "ViewStyle",
+ "default": "none",
+ "description": "Style property for the title in the content bubble."
+ }
+ ],
+ "fileNameWithExt": "Callout.tsx",
+ "relPath": "src/components/Callout.tsx",
+ "name": "Callout"
+ },
+ "Camera": {
+ "description": "Controls the perspective from which the user sees the map.\n\nTo use imperative methods, pass in a ref object:\n\n```tsx\nconst camera = useRef<Camera>(null);\n\nuseEffect(() => {\n camera.current?.setCamera({\n centerCoordinate: [lon, lat],\n });\n}, []);\n\nreturn (\n \n);\n```",
+ "displayName": "Camera",
+ "methods": [
+ {
+ "name": "setCamera",
+ "docblock": "Sets any camera properties, with default fallbacks if unspecified.\n\n@example\ncamera.current?.setCamera({\n centerCoordinate: [lon, lat],\n});\n\n@param {CameraStop | CameraStops} config",
+ "modifiers": [],
+ "params": [],
+ "returns": null,
+ "description": "Sets any camera properties, with default fallbacks if unspecified.",
+ "examples": [
+ "\ncamera.current?.setCamera({\n centerCoordinate: [lon, lat],\n});\n\n"
+ ]
+ },
+ {
+ "name": "fitBounds",
+ "docblock": "Set the camera position to enclose the provided bounds, with optional\npadding and duration.\n\n@example\ncamera.fitBounds([lon, lat], [lon, lat]);\ncamera.fitBounds([lon, lat], [lon, lat], [20, 0], 1000);\n\n@param {Position} ne Northeast coordinate of bounding box\n@param {Position} sw Southwest coordinate of bounding box\n@param {number | number[]} paddingConfig The viewport padding, specified as a number (all sides equal), a 2-item array ([vertical, horizontal]), or a 4-item array ([top, right, bottom, left])\n@param {number} animationDuration The transition duration",
+ "modifiers": [],
+ "params": [],
+ "returns": null,
+ "description": "Set the camera position to enclose the provided bounds, with optional\npadding and duration.",
+ "examples": [
+ "\ncamera.fitBounds([lon, lat], [lon, lat]);\ncamera.fitBounds([lon, lat], [lon, lat], [20, 0], 1000);\n\n"
+ ]
+ },
+ {
+ "name": "flyTo",
+ "docblock": "Sets the camera to center around the provided coordinate using a realistic 'travel'\nanimation, with optional duration.\n\n@example\ncamera.flyTo([lon, lat]);\ncamera.flyTo([lon, lat], 12000);\n\n @param {Position} centerCoordinate The coordinate to center in the view\n @param {number} animationDuration The transition duration",
+ "modifiers": [],
+ "params": [],
+ "returns": null,
+ "description": "Sets the camera to center around the provided coordinate using a realistic 'travel'\nanimation, with optional duration.",
+ "examples": [
+ "\ncamera.flyTo([lon, lat]);\ncamera.flyTo([lon, lat], 12000);\n\n "
+ ]
+ },
+ {
+ "name": "moveTo",
+ "docblock": "Sets the camera to center around the provided coordinate, with optional duration.\n\n@example\ncamera.moveTo([lon, lat], 200);\ncamera.moveTo([lon, lat]);\n\n @param {Position} centerCoordinate The coordinate to center in the view\n @param {number} animationDuration The transition duration",
+ "modifiers": [],
+ "params": [],
+ "returns": null,
+ "description": "Sets the camera to center around the provided coordinate, with optional duration.",
+ "examples": [
+ "\ncamera.moveTo([lon, lat], 200);\ncamera.moveTo([lon, lat]);\n\n "
+ ]
+ },
+ {
+ "name": "zoomTo",
+ "docblock": "Zooms the camera to the provided level, with optional duration.\n\n@example\ncamera.zoomTo(16);\ncamera.zoomTo(16, 100);\n\n@param {number} zoomLevel The target zoom\n@param {number} animationDuration The transition duration",
+ "modifiers": [],
+ "params": [],
+ "returns": null,
+ "description": "Zooms the camera to the provided level, with optional duration.",
+ "examples": [
+ "\ncamera.zoomTo(16);\ncamera.zoomTo(16, 100);\n\n"
+ ]
+ }
+ ],
+ "props": [
+ {
+ "name": "type",
+ "required": false,
+ "type": "literal",
+ "default": "none",
+ "description": "Allows static check of the data type. For internal use only."
+ },
+ {
+ "name": "centerCoordinate",
+ "required": false,
+ "type": "Position",
+ "default": "none",
+ "description": "The location on which the map should center."
+ },
+ {
+ "name": "bounds",
+ "required": false,
+ "type": "intersection",
+ "default": "none",
+ "description": "The corners of a box around which the map should bound. Contains padding props for backwards\ncompatibility; the root `padding` prop should be used instead."
+ },
+ {
+ "name": "heading",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The heading (orientation) of the map."
+ },
+ {
+ "name": "pitch",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The pitch of the map."
+ },
+ {
+ "name": "zoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The zoom level of the map."
+ },
+ {
+ "name": "padding",
+ "required": false,
+ "type": {
+ "name": "shape",
+ "value": [
+ {
+ "name": "paddingLeft",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "Left padding in points"
+ },
+ {
+ "name": "paddingRight",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "Right padding in points"
+ },
+ {
+ "name": "paddingTop",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "Top padding in points"
+ },
+ {
+ "name": "paddingBottom",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "Bottom padding in points"
+ }
+ ]
+ },
+ "default": "none",
+ "description": "The viewport padding in points."
+ },
+ {
+ "name": "animationDuration",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The duration the map takes to animate to a new configuration."
+ },
+ {
+ "name": "animationMode",
+ "required": false,
+ "type": "\\| 'flyTo'\n\\| 'easeTo'\n\\| 'linearTo'\n\\| 'moveTo'\n\\| 'none'",
+ "default": "none",
+ "description": "The easing or path the camera uses to animate to a new configuration."
+ },
+ {
+ "name": "followUserLocation",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "Whether the map orientation follows the user location."
+ },
+ {
+ "name": "followUserMode",
+ "required": false,
+ "type": "UserTrackingMode",
+ "default": "none",
+ "description": "The mode used to track the user location on the map."
+ },
+ {
+ "name": "followZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The zoom level used when following the user location."
+ },
+ {
+ "name": "followPitch",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The pitch used when following the user location."
+ },
+ {
+ "name": "followHeading",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The heading used when following the user location."
+ },
+ {
+ "name": "followPadding",
+ "required": false,
+ "type": "Partial",
+ "default": "none",
+ "description": "The padding used to position the user location when following."
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The lowest allowed zoom level."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The highest allowed zoom level."
+ },
+ {
+ "name": "maxBounds",
+ "required": false,
+ "type": {
+ "name": "shape",
+ "value": [
+ {
+ "name": "ne",
+ "required": true,
+ "type": "Position",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ },
+ {
+ "name": "sw",
+ "required": true,
+ "type": "Position",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ]
+ },
+ "default": "none",
+ "description": "The corners of a box defining the limits of where the camera can pan or zoom."
+ },
+ {
+ "name": "defaultSettings",
+ "required": false,
+ "type": {
+ "name": "shape",
+ "value": [
+ {
+ "name": "type",
+ "required": false,
+ "type": "literal",
+ "default": "none",
+ "description": "Allows static check of the data type. For internal use only."
+ },
+ {
+ "name": "centerCoordinate",
+ "required": false,
+ "type": "Position",
+ "default": "none",
+ "description": "The location on which the map should center."
+ },
+ {
+ "name": "bounds",
+ "required": false,
+ "type": "intersection",
+ "default": "none",
+ "description": "The corners of a box around which the map should bound. Contains padding props for backwards\ncompatibility; the root `padding` prop should be used instead."
+ },
+ {
+ "name": "heading",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The heading (orientation) of the map."
+ },
+ {
+ "name": "pitch",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The pitch of the map."
+ },
+ {
+ "name": "zoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The zoom level of the map."
+ },
+ {
+ "name": "padding",
+ "required": false,
+ "type": "signature",
+ "default": "none",
+ "description": "The viewport padding in points."
+ },
+ {
+ "name": "animationDuration",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The duration the map takes to animate to a new configuration."
+ },
+ {
+ "name": "animationMode",
+ "required": false,
+ "type": "union",
+ "default": "none",
+ "description": "The easing or path the camera uses to animate to a new configuration."
+ }
+ ]
+ },
+ "default": "none",
+ "description": "The configuration that the camera falls back on, if no other values are specified."
+ },
+ {
+ "name": "allowUpdates",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "Whether the camera should send any configuration to the native module. Prevents unnecessary tile\nfetching and improves performance when the map is not visible. Defaults to `true`."
+ },
+ {
+ "name": "triggerKey",
+ "required": false,
+ "type": "string \\| number",
+ "default": "none",
+ "description": "Any arbitrary primitive value that, when changed, causes the camera to retry moving to its target\nconfiguration. (Not yet implemented.)"
+ },
+ {
+ "name": "onUserTrackingModeChange",
+ "required": false,
+ "type": {
+ "name": "func",
+ "funcSignature": "(event:MapboxGLEvent) => void"
+ },
+ "default": "none",
+ "description": "Executes when user tracking mode changes.\n**DEPRECATED** use Viewport#onStatusChanged instead.\n*signature:*`(event:MapboxGLEvent) => void`"
+ }
+ ],
+ "fileNameWithExt": "Camera.tsx",
+ "relPath": "src/components/Camera.tsx",
+ "name": "Camera"
+ },
+ "CircleLayer": {
+ "description": "CircleLayer is a style layer that renders one or more filled circles on the map.",
+ "displayName": "CircleLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the source in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "Mapbox.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "slot",
+ "required": false,
+ "type": "'bottom' \\| 'middle' \\| 'top'",
+ "default": "none",
+ "description": "The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.\n\nv11 only"
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "CircleLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "CircleLayer.tsx",
+ "relPath": "src/components/CircleLayer.tsx",
+ "name": "CircleLayer",
+ "mbx": {
+ "name": "circle"
+ },
+ "styles": [
+ {
+ "name": "circleSortKey",
+ "type": "number",
+ "values": [],
+ "description": "Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-circle-circle-sort-key",
+ "name": "circle-sort-key",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-circle-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "circleRadius",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "pixels",
+ "default": 5,
+ "description": "Circle radius.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-radius",
+ "name": "circle-radius",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The fill color of the circle.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-color",
+ "name": "circle-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleBlur",
+ "type": "number",
+ "values": [],
+ "default": 0,
+ "description": "Amount to blur the circle. 1 blurs the circle such that only the centerpoint is full opacity.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-blur",
+ "name": "circle-blur",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity at which the circle will be drawn.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-opacity",
+ "name": "circle-opacity",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleTranslate",
+ "type": "array",
+ "values": [],
+ "units": "pixels",
+ "default": [
+ 0,
+ 0
+ ],
+ "description": "The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-translate",
+ "name": "circle-translate",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleTranslateAnchor",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The circle is translated relative to the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The circle is translated relative to the viewport."
+ }
+ ],
+ "default": "map",
+ "description": "Controls the frame of reference for `circleTranslate`.",
+ "requires": [
+ "circleTranslate"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-circle-circle-translate-anchor",
+ "name": "circle-translate-anchor",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circlePitchScale",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "Circles are scaled according to their apparent distance to the camera."
+ },
+ {
+ "value": "viewport",
+ "doc": "Circles are not scaled."
+ }
+ ],
+ "default": "map",
+ "description": "Controls the scaling behavior of the circle when the map is pitched.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-circle-circle-pitch-scale",
+ "name": "circle-pitch-scale",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circlePitchAlignment",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The circle is aligned to the plane of the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The circle is aligned to the plane of the viewport."
+ }
+ ],
+ "default": "viewport",
+ "description": "Orientation of circle when map is pitched.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-circle-circle-pitch-alignment",
+ "name": "circle-pitch-alignment",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleStrokeWidth",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "pixels",
+ "default": 0,
+ "description": "The width of the circle's stroke. Strokes are placed outside of the `circleRadius`.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-stroke-width",
+ "name": "circle-stroke-width",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleStrokeColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The stroke color of the circle.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-stroke-color",
+ "name": "circle-stroke-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "circleStrokeOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity of the circle's stroke.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-circle-circle-stroke-opacity",
+ "name": "circle-stroke-opacity",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "CustomLocationProvider": {
+ "description": "",
+ "displayName": "CustomLocationProvider",
+ "methods": [],
+ "props": [
+ {
+ "name": "coordinate",
+ "required": false,
+ "type": "Position",
+ "default": "none",
+ "description": "longitude and latitude to use for the custom location provider that gets applied to the NativeUserLocation"
+ },
+ {
+ "name": "heading",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "heading/bearing to use for custom location provider that gets applied to the NativeUserLocation"
+ }
+ ],
+ "fileNameWithExt": "CustomLocationProvider.tsx",
+ "relPath": "src/components/CustomLocationProvider.tsx",
+ "name": "CustomLocationProvider"
+ },
+ "FillExtrusionLayer": {
+ "description": "FillExtrusionLayer is a style layer that renders one or more 3D extruded polygons on the map.",
+ "displayName": "FillExtrusionLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the layer in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "MapboxGL.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": true,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "FillExtrusionLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "FillExtrusionLayer.tsx",
+ "relPath": "src/components/FillExtrusionLayer.tsx",
+ "name": "FillExtrusionLayer",
+ "mbx": {
+ "name": "fill-extrusion"
+ },
+ "styles": [
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-fill-extrusion-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "fillExtrusionOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity of the entire fill extrusion layer. This is rendered on a perLayer, not perFeature, basis, and dataDriven styling is not available.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-opacity",
+ "name": "fill-extrusion-opacity",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The base color of the extruded fill. The extrusion's surfaces will be shaded differently based on this color in combination with the root `light` settings. If this color is specified as `rgba` with an alpha component, the alpha component will be ignored; use `fillExtrusionOpacity` to set layer opacity.",
+ "requires": [],
+ "disabledBy": [
+ "fillExtrusionPattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-color",
+ "name": "fill-extrusion-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionTranslate",
+ "type": "array",
+ "values": [],
+ "units": "pixels",
+ "default": [
+ 0,
+ 0
+ ],
+ "description": "The geometry's offset. Values are [x, y] where negatives indicate left and up (on the flat plane), respectively.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-translate",
+ "name": "fill-extrusion-translate",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionTranslateAnchor",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The fill extrusion is translated relative to the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The fill extrusion is translated relative to the viewport."
+ }
+ ],
+ "default": "map",
+ "description": "Controls the frame of reference for `fillExtrusionTranslate`.",
+ "requires": [
+ "fillExtrusionTranslate"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-translate-anchor",
+ "name": "fill-extrusion-translate-anchor",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionPattern",
+ "type": "resolvedImage",
+ "values": [],
+ "description": "Name of image in sprite to use for drawing images on extruded fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-pattern",
+ "name": "fill-extrusion-pattern",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionHeight",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "meters",
+ "default": 0,
+ "description": "The height with which to extrude this layer.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-height",
+ "name": "fill-extrusion-height",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionBase",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "meters",
+ "default": 0,
+ "description": "The height with which to extrude the base of this layer. Must be less than or equal to `fillExtrusionHeight`.",
+ "requires": [
+ "fillExtrusionHeight"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-base",
+ "name": "fill-extrusion-base",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionVerticalGradient",
+ "type": "boolean",
+ "values": [],
+ "default": true,
+ "description": "Whether to apply a vertical gradient to the sides of a fillExtrusion layer. If true, sides will be shaded slightly darker farther down.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-vertical-gradient",
+ "name": "fill-extrusion-vertical-gradient",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillExtrusionRoundedRoof",
+ "type": "boolean",
+ "values": [],
+ "default": true,
+ "description": "Indicates whether top edges should be rounded when fillExtrusionEdgeRadius has a value greater than 0. If false, rounded edges are only applied to the sides. Default is true.",
+ "requires": [
+ "fillExtrusionEdgeRadius"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-fill-extrusion-fill-extrusion-rounded-roof",
+ "name": "fill-extrusion-rounded-roof",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "FillLayer": {
+ "description": "FillLayer is a style layer that renders one or more filled (and optionally stroked) polygons on the map.",
+ "displayName": "FillLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the source in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "Mapbox.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "slot",
+ "required": false,
+ "type": "'bottom' \\| 'middle' \\| 'top'",
+ "default": "none",
+ "description": "The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.\n\nv11 only"
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "FillLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "FillLayer.tsx",
+ "relPath": "src/components/FillLayer.tsx",
+ "name": "FillLayer",
+ "mbx": {
+ "name": "fill"
+ },
+ "styles": [
+ {
+ "name": "fillSortKey",
+ "type": "number",
+ "values": [],
+ "description": "Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-fill-fill-sort-key",
+ "name": "fill-sort-key",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-fill-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "fillAntialias",
+ "type": "boolean",
+ "values": [],
+ "default": true,
+ "description": "Whether or not the fill should be antialiased.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-fill-fill-antialias",
+ "name": "fill-antialias",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity of the entire fill layer. In contrast to the `fillColor`, this value will also affect the 1px stroke around the fill, if the stroke is used.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-fill-opacity",
+ "name": "fill-opacity",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The color of the filled part of this layer. This color can be specified as `rgba` with an alpha component and the color's opacity will not affect the opacity of the 1px stroke, if it is used.",
+ "requires": [],
+ "disabledBy": [
+ "fillPattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-fill-color",
+ "name": "fill-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillOutlineColor",
+ "type": "color",
+ "values": [],
+ "description": "The outline color of the fill. Matches the value of `fillColor` if unspecified.",
+ "requires": [],
+ "disabledBy": [
+ "fillPattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-fill-outline-color",
+ "name": "fill-outline-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillTranslate",
+ "type": "array",
+ "values": [],
+ "units": "pixels",
+ "default": [
+ 0,
+ 0
+ ],
+ "description": "The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-fill-fill-translate",
+ "name": "fill-translate",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillTranslateAnchor",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The fill is translated relative to the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The fill is translated relative to the viewport."
+ }
+ ],
+ "default": "map",
+ "description": "Controls the frame of reference for `fillTranslate`.",
+ "requires": [
+ "fillTranslate"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-fill-fill-translate-anchor",
+ "name": "fill-translate-anchor",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "fillPattern",
+ "type": "resolvedImage",
+ "values": [],
+ "description": "Name of image in sprite to use for drawing image fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-fill-fill-pattern",
+ "name": "fill-pattern",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "HeadingIndicator": {
+ "description": "",
+ "displayName": "HeadingIndicator",
+ "methods": [],
+ "props": [
+ {
+ "name": "heading",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ],
+ "fileNameWithExt": "HeadingIndicator.tsx",
+ "relPath": "src/components/HeadingIndicator.tsx",
+ "name": "HeadingIndicator"
+ },
+ "HeatmapLayer": {
+ "description": "HeatmapLayer is a style layer that renders one or more filled circles on the map.",
+ "displayName": "HeatmapLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the source in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "Mapbox.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "slot",
+ "required": false,
+ "type": "'bottom' \\| 'middle' \\| 'top'",
+ "default": "none",
+ "description": "The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.\n\nv11 only"
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "HeatmapLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "HeatmapLayer.tsx",
+ "relPath": "src/components/HeatmapLayer.tsx",
+ "name": "HeatmapLayer",
+ "mbx": {
+ "name": "heatmap"
+ },
+ "styles": [
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-heatmap-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "heatmapRadius",
+ "type": "number",
+ "values": [],
+ "minimum": 1,
+ "units": "pixels",
+ "default": 30,
+ "description": "Radius of influence of one heatmap point in pixels. Increasing the value makes the heatmap smoother, but less detailed. `queryRenderedFeatures` on heatmap layers will return points within this radius.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-heatmap-heatmap-radius",
+ "name": "heatmap-radius",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "heatmapWeight",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "default": 1,
+ "description": "A measure of how much an individual point contributes to the heatmap. A value of 10 would be equivalent to having 10 points of weight 1 in the same spot. Especially useful when combined with clustering.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-heatmap-heatmap-weight",
+ "name": "heatmap-weight",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "heatmapIntensity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "default": 1,
+ "description": "Similar to `heatmapWeight` but controls the intensity of the heatmap globally. Primarily used for adjusting the heatmap based on zoom level.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-heatmap-heatmap-intensity",
+ "name": "heatmap-intensity",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "heatmapColor",
+ "type": "color",
+ "values": [],
+ "default": [
+ "interpolate",
+ [
+ "linear"
+ ],
+ [
+ "heatmap-density"
+ ],
+ 0,
+ "rgba(0, 0, 255, 0)",
+ 0.1,
+ "royalblue",
+ 0.3,
+ "cyan",
+ 0.5,
+ "lime",
+ 0.7,
+ "yellow",
+ 1,
+ "red"
+ ],
+ "description": "Defines the color of each pixel based on its density value in a heatmap. Should be an expression that uses `[\"heatmapDensity\"]` as input.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "heatmap-density"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-heatmap-heatmap-color",
+ "name": "heatmap-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "heatmapOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The global opacity at which the heatmap layer will be drawn.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-heatmap-heatmap-opacity",
+ "name": "heatmap-opacity",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "Image": {
+ "description": "",
+ "displayName": "Image",
+ "methods": [
+ {
+ "name": "refresh",
+ "docblock": null,
+ "modifiers": [],
+ "params": [],
+ "returns": null
+ }
+ ],
+ "props": [
+ {
+ "name": "name",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "ID of the image"
+ },
+ {
+ "name": "sdf",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "Make image an sdf optional - see [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/)"
+ },
+ {
+ "name": "stretchX",
+ "required": false,
+ "type": "Array",
+ "default": "none",
+ "description": "An array of two-element arrays, consisting of two numbers that represent, the from position and the to position of areas that can be stretched horizontally."
+ },
+ {
+ "name": "stretchY",
+ "required": false,
+ "type": "Array",
+ "default": "none",
+ "description": "An array of two-element arrays, consisting of two numbers that represent, the from position and the to position of areas that can be stretched vertically."
+ },
+ {
+ "name": "content",
+ "required": false,
+ "type": "tuple",
+ "default": "none",
+ "description": "An array of four numbers, with the first two specifying the left, top\ncorner, and the last two specifying the right, bottom corner. If present, and if the\nicon uses icon-text-fit, the symbol's text will be fit inside the content box."
+ },
+ {
+ "name": "scale",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Scale factor for the image."
+ },
+ {
+ "name": "children",
+ "required": true,
+ "type": "ReactElement",
+ "default": "none",
+ "description": "Single react native view rendering the image"
+ }
+ ],
+ "fileNameWithExt": "Image.tsx",
+ "relPath": "src/components/Image.tsx",
+ "name": "Image"
+ },
+ "ImageSource": {
+ "description": "ImageSource is a content source that is used for a georeferenced raster image to be shown on the map.\nThe georeferenced image scales and rotates as the user zooms and rotates the map",
+ "displayName": "ImageSource",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the source."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing source in the style. Does not create a new source."
+ },
+ {
+ "name": "url",
+ "required": false,
+ "type": "number \\| string",
+ "default": "none",
+ "description": "An HTTP(S) URL, absolute file URL, or local file URL to the source image.\nGifs are currently not supported."
+ },
+ {
+ "name": "coordinates",
+ "required": false,
+ "type": "tuple",
+ "default": "none",
+ "description": "The top left, top right, bottom right, and bottom left coordinates for the image."
+ },
+ {
+ "name": "children",
+ "required": false,
+ "type": "React.ReactElement \\| React.ReactElement[]",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ],
+ "fileNameWithExt": "ImageSource.tsx",
+ "relPath": "src/components/ImageSource.tsx",
+ "name": "ImageSource"
+ },
+ "Images": {
+ "description": "Images defines the images used in Symbol etc. layers.",
+ "displayName": "Images",
+ "methods": [],
+ "props": [
+ {
+ "name": "images",
+ "required": false,
+ "type": {
+ "name": "shape",
+ "value": [
+ {
+ "name": {
+ "name": "string"
+ },
+ "required": true,
+ "type": "union",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ]
+ },
+ "default": "none",
+ "description": "Specifies the external images in key-value pairs required for the shape source.\nKeys are names - see iconImage expressions, values can be either urls-s objects\nwith format `{uri: 'http://...'}` or `require('image.png')` or `import 'image.png'`"
+ },
+ {
+ "name": "nativeAssetImages",
+ "required": false,
+ "type": "Array",
+ "default": "none",
+ "description": "If you have an asset under Image.xcassets on iOS and the drawables directory on android\nyou can specify an array of string names with assets as the key `['pin']`.\nAdditionally object with keys sdf, and strechX, strechY is supported for [SDF icons](https://docs.mapbox.com/help/troubleshooting/using-recolorable-images-in-mapbox-maps/)"
+ },
+ {
+ "name": "onImageMissing",
+ "required": false,
+ "type": {
+ "name": "func",
+ "funcSignature": "(imageKey:string) => void"
+ },
+ "default": "none",
+ "description": "Gets called when a Layer is trying to render an image whose key is not present in\nany of the `Images` component of the Map.\n*signature:*`(imageKey:string) => void`"
+ },
+ {
+ "name": "children",
+ "required": false,
+ "type": "ReactElement \\| Array> \\| never",
+ "default": "none",
+ "description": "FIX ME NO DESCRIPTION"
+ }
+ ],
+ "fileNameWithExt": "Images.tsx",
+ "relPath": "src/components/Images.tsx",
+ "name": "Images"
+ },
+ "Light": {
+ "description": "Light represents the light source for extruded geometries",
+ "methods": [],
+ "props": [
+ {
+ "name": "style",
+ "required": true,
+ "type": "LightLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "Light.tsx",
+ "relPath": "src/components/Light.tsx",
+ "name": "Light",
+ "mbx": {
+ "name": "light"
+ },
+ "styles": [
+ {
+ "name": "anchor",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The position of the light source is aligned to the rotation of the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The position of the light source is aligned to the rotation of the viewport."
+ }
+ ],
+ "default": "viewport",
+ "description": "Whether extruded geometries are lit relative to the map or viewport.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "anchor",
+ "name": "anchor",
+ "namespace": null
+ }
+ },
+ {
+ "name": "position",
+ "type": "array",
+ "values": [],
+ "default": [
+ 1.15,
+ 210,
+ 30
+ ],
+ "description": "Position of the light source relative to lit (extruded) geometries, in [r radial coordinate, a azimuthal angle, p polar angle] where r indicates the distance from the center of the base of an object to its light, a indicates the position of the light relative to 0° (0° when `light.anchor` is set to `viewport` corresponds to the top of the viewport, or 0° when `light.anchor` is set to `map` corresponds to due north, and degrees proceed clockwise), and p indicates the height of the light (from 0°, directly above, to 180°, directly below).",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "position",
+ "name": "position",
+ "namespace": null
+ }
+ },
+ {
+ "name": "color",
+ "type": "color",
+ "values": [],
+ "default": "#ffffff",
+ "description": "Color tint for lighting extruded geometries.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "color",
+ "name": "color",
+ "namespace": null
+ }
+ },
+ {
+ "name": "intensity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 0.5,
+ "description": "Intensity of lighting (on a scale from 0 to 1). Higher numbers will present as more extreme contrast.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "intensity",
+ "name": "intensity",
+ "namespace": null
+ }
+ }
+ ]
+ },
+ "LineLayer": {
+ "description": "LineLayer is a style layer that renders one or more stroked polylines on the map.",
+ "displayName": "LineLayer",
+ "methods": [],
+ "props": [
+ {
+ "name": "id",
+ "required": true,
+ "type": "string",
+ "default": "none",
+ "description": "A string that uniquely identifies the source in the style to which it is added."
+ },
+ {
+ "name": "existing",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "The id refers to en existing layer in the style. Does not create a new layer."
+ },
+ {
+ "name": "sourceID",
+ "required": false,
+ "type": "string",
+ "default": "Mapbox.StyleSource.DefaultSourceID",
+ "description": "The source from which to obtain the data to style.\nIf the source has not yet been added to the current style, the behavior is undefined.\nInferred from parent source only if the layer is a direct child to it."
+ },
+ {
+ "name": "sourceLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Identifier of the layer within the source identified by the sourceID property from which the receiver obtains the data to style."
+ },
+ {
+ "name": "aboveLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer above aboveLayerID."
+ },
+ {
+ "name": "belowLayerID",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "Inserts a layer below belowLayerID"
+ },
+ {
+ "name": "layerIndex",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "Inserts a layer at a specified index"
+ },
+ {
+ "name": "filter",
+ "required": false,
+ "type": "FilterExpression",
+ "default": "none",
+ "description": "Filter only the features in the source layer that satisfy a condition that you define"
+ },
+ {
+ "name": "minZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The minimum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "maxZoomLevel",
+ "required": false,
+ "type": "number",
+ "default": "none",
+ "description": "The maximum zoom level at which the layer gets parsed and appears."
+ },
+ {
+ "name": "slot",
+ "required": false,
+ "type": "'bottom' \\| 'middle' \\| 'top'",
+ "default": "none",
+ "description": "The slot this layer is assigned to. If specified, and a slot with that name exists, it will be placed at that position in the layer order.\n\nv11 only"
+ },
+ {
+ "name": "style",
+ "required": false,
+ "type": "LineLayerStyleProps",
+ "default": "none",
+ "description": "Customizable style attributes"
+ }
+ ],
+ "fileNameWithExt": "LineLayer.tsx",
+ "relPath": "src/components/LineLayer.tsx",
+ "name": "LineLayer",
+ "mbx": {
+ "name": "line"
+ },
+ "styles": [
+ {
+ "name": "lineCap",
+ "type": "enum",
+ "values": [
+ {
+ "value": "butt",
+ "doc": "A cap with a squared-off end which is drawn to the exact endpoint of the line."
+ },
+ {
+ "value": "round",
+ "doc": "A cap with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line."
+ },
+ {
+ "value": "square",
+ "doc": "A cap with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width."
+ }
+ ],
+ "default": "butt",
+ "description": "The display of line endings.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-line-line-cap",
+ "name": "line-cap",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "lineJoin",
+ "type": "enum",
+ "values": [
+ {
+ "value": "bevel",
+ "doc": "A join with a squared-off end which is drawn beyond the endpoint of the line at a distance of one-half of the line's width."
+ },
+ {
+ "value": "round",
+ "doc": "A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line."
+ },
+ {
+ "value": "miter",
+ "doc": "A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet."
+ }
+ ],
+ "default": "miter",
+ "description": "The display of lines when joining.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [
+ "camera"
+ ],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-line-line-join",
+ "name": "line-join",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "lineMiterLimit",
+ "type": "number",
+ "values": [],
+ "default": 2,
+ "description": "Used to automatically convert miter joins to bevel joins for sharp angles.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-line-line-miter-limit",
+ "name": "line-miter-limit",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "lineRoundLimit",
+ "type": "number",
+ "values": [],
+ "default": 1.05,
+ "description": "Used to automatically convert round joins to miter joins for shallow angles.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-line-line-round-limit",
+ "name": "line-round-limit",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "lineSortKey",
+ "type": "number",
+ "values": [],
+ "description": "Sorts features in ascending order based on this value. Features with a higher sort key will appear above features with a lower sort key.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "mbx": {
+ "fullName": "layout-line-line-sort-key",
+ "name": "line-sort-key",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "visibility",
+ "type": "enum",
+ "values": [
+ {
+ "value": "visible",
+ "doc": "The layer is shown."
+ },
+ {
+ "value": "none",
+ "doc": "The layer is not shown."
+ }
+ ],
+ "default": "visible",
+ "description": "Whether this layer is displayed.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false
+ },
+ "mbx": {
+ "fullName": "layout-line-visibility",
+ "name": "visibility",
+ "namespace": "layout"
+ }
+ },
+ {
+ "name": "lineOpacity",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "maximum": 1,
+ "default": 1,
+ "description": "The opacity at which the line will be drawn.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-opacity",
+ "name": "line-opacity",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineColor",
+ "type": "color",
+ "values": [],
+ "default": "#000000",
+ "description": "The color with which the line will be drawn.",
+ "requires": [],
+ "disabledBy": [
+ "linePattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-color",
+ "name": "line-color",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineTranslate",
+ "type": "array",
+ "values": [],
+ "units": "pixels",
+ "default": [
+ 0,
+ 0
+ ],
+ "description": "The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-translate",
+ "name": "line-translate",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineTranslateAnchor",
+ "type": "enum",
+ "values": [
+ {
+ "value": "map",
+ "doc": "The line is translated relative to the map."
+ },
+ {
+ "value": "viewport",
+ "doc": "The line is translated relative to the viewport."
+ }
+ ],
+ "default": "map",
+ "description": "Controls the frame of reference for `lineTranslate`.",
+ "requires": [
+ "lineTranslate"
+ ],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom"
+ ]
+ },
+ "mbx": {
+ "fullName": "paint-line-line-translate-anchor",
+ "name": "line-translate-anchor",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineWidth",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "pixels",
+ "default": 1,
+ "description": "Stroke thickness.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [
+ "camera"
+ ],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-width",
+ "name": "line-width",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineGapWidth",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "pixels",
+ "default": 0,
+ "description": "Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-gap-width",
+ "name": "line-gap-width",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineOffset",
+ "type": "number",
+ "values": [],
+ "units": "pixels",
+ "default": 0,
+ "description": "The line's offset. For linear features, a positive value offsets the line to the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-offset",
+ "name": "line-offset",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineBlur",
+ "type": "number",
+ "values": [],
+ "minimum": 0,
+ "units": "pixels",
+ "default": 0,
+ "description": "Blur applied to the line, in pixels.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "zoom",
+ "feature",
+ "feature-state",
+ "measure-light"
+ ]
+ },
+ "transition": true,
+ "mbx": {
+ "fullName": "paint-line-line-blur",
+ "name": "line-blur",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineDasharray",
+ "type": "array",
+ "values": [],
+ "minimum": 0,
+ "units": "line widths",
+ "description": "Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to pixels, multiply the length by the current line width. Note that GeoJSON sources with `lineMetrics: true` specified won't render dashed lines to the expected scale. Also note that zoomDependent expressions will be evaluated only at integer zoom levels.",
+ "requires": [],
+ "disabledBy": [
+ "linePattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-line-line-dasharray",
+ "name": "line-dasharray",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "linePattern",
+ "type": "resolvedImage",
+ "values": [],
+ "description": "Name of image in sprite to use for drawing image lines. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512). Note that zoomDependent expressions will be evaluated only at integer zoom levels.",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": false,
+ "parameters": [
+ "zoom",
+ "feature"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-line-line-pattern",
+ "name": "line-pattern",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineGradient",
+ "type": "color",
+ "values": [],
+ "description": "A gradient used to color a line feature at various distances along its length. Defined using a `step` or `interpolate` expression which outputs a color for each corresponding `lineProgress` input value. `lineProgress` is a percentage of the line feature's total length as measured on the webmercator projected coordinate plane (a `number` between `0` and `1`). Can only be used with GeoJSON sources that specify `\"lineMetrics\": true`.",
+ "requires": [],
+ "disabledBy": [
+ "linePattern"
+ ],
+ "allowedFunctionTypes": [],
+ "expression": {
+ "interpolated": true,
+ "parameters": [
+ "line-progress"
+ ]
+ },
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-line-line-gradient",
+ "name": "line-gradient",
+ "namespace": "paint"
+ }
+ },
+ {
+ "name": "lineTrimOffset",
+ "type": "array",
+ "values": [],
+ "minimum": [
+ 0,
+ 0
+ ],
+ "maximum": [
+ 1,
+ 1
+ ],
+ "default": [
+ 0,
+ 0
+ ],
+ "description": "The line part between [trimStart, trimEnd] will be marked as transparent to make a route vanishing effect. The line trimOff offset is based on the whole line range [0.0, 1.0].",
+ "requires": [],
+ "disabledBy": [],
+ "allowedFunctionTypes": [],
+ "transition": false,
+ "mbx": {
+ "fullName": "paint-line-line-trim-offset",
+ "name": "line-trim-offset",
+ "namespace": "paint"
+ }
+ }
+ ]
+ },
+ "LocationPuck": {
+ "description": "Renders a puck on the map that shows the device's current location.",
+ "displayName": "LocationPuck",
+ "methods": [],
+ "props": [
+ {
+ "name": "androidRenderMode",
+ "required": false,
+ "type": "'normal' \\| 'compass' \\| 'gps'",
+ "default": "none",
+ "description": "Android render mode.\n\n - normal: just a circle\n - compass: triangle with heading\n - gps: large arrow\n\n@deprecated use `puckBearing` for source and `bearingImage` for image\n@platform android"
+ },
+ {
+ "name": "puckBearing",
+ "required": false,
+ "type": "'heading' \\| 'course'",
+ "default": "none",
+ "description": "The bearing of the puck.\n\n - heading: Orients the puck to match the direction in which the device is facing.\n - course: Orients the puck to match the direction in which the device is moving."
+ },
+ {
+ "name": "puckBearingEnabled",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "Whether the puck rotates to track the bearing source."
+ },
+ {
+ "name": "iosShowsUserHeadingIndicator",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "iOS only. A Boolean value indicating whether the user location annotation may display a permanent heading indicator.\n\n@platform ios\n@deprecated use `puckBearingEnabled={true} puckBrearing=\"heading\"` instead"
+ },
+ {
+ "name": "topImage",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "The name of image to use as the top layer for the location indicator. Images component should define this image."
+ },
+ {
+ "name": "bearingImage",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "The name of image to use as the middle layer for the location indicator. Images component should define this image."
+ },
+ {
+ "name": "shadowImage",
+ "required": false,
+ "type": "string",
+ "default": "none",
+ "description": "The name of image to use as the background for the location indicator. Images component should define this image."
+ },
+ {
+ "name": "scale",
+ "required": false,
+ "type": "T \\| Expression",
+ "default": "none",
+ "description": "The size of the images, as a scale factor applied to the size of the specified image. Supports expressions based on zoom.\n\n@example\n[\"interpolate\",[\"linear\"], [\"zoom\"], 10.0, 1.0, 20.0, 4.0]]\n@example\n2.0"
+ },
+ {
+ "name": "pulsing",
+ "required": false,
+ "type": "\\| {\n /**\n * Flag determining whether the pulsing circle animation.\n */\n isEnabled?: boolean;\n\n /**\n * The color of the pulsing circle.\n */\n color?: number \\| ColorValue;\n\n /**\n * Circle radius configuration for the pulsing circle animation.\n * - accuracy: Pulsing circle animates with the `horizontalAccuracy` form the latest puck location.\n * - number: Pulsing circle should animate with the constant radius.\n */\n radius?: 'accuracy' \\| number;\n }\n\\| 'default'",
+ "default": "none",
+ "description": "The configration parameters for sonar-like pulsing circle animation shown around the 2D puck."
+ },
+ {
+ "name": "visible",
+ "required": false,
+ "type": "boolean",
+ "default": "none",
+ "description": "Whether location icon is visible, defaults to true"
+ }
+ ],
+ "fileNameWithExt": "LocationPuck.tsx",
+ "relPath": "src/components/LocationPuck.tsx",
+ "name": "LocationPuck"
+ },
+ "MapView": {
+ "description": "MapView backed by Mapbox Native GL",
+ "displayName": "MapView",
+ "methods": [
+ {
+ "name": "getPointInView",
+ "docblock": "Converts a geographic coordinate to a point in the given view’s coordinate system.\n\n@example\nconst pointInView = await this._map.getPointInView([-37.817070, 144.949901]);\n\n@param {Array} coordinate - A point expressed in the map view's coordinate system.\n@return {Array}",
+ "modifiers": [
+ "async"
+ ],
+ "params": [
+ {
+ "name": "coordinate",
+ "description": "A point expressed in the map view's coordinate system.",
+ "type": {
+ "name": "Position"
+ },
+ "optional": false
+ }
+ ],
+ "returns": {
+ "type": {
+ "name": "Promise",
+ "elements": [
+ {
+ "name": "Position"
+ }
+ ],
+ "raw": "Promise"
+ }
+ },
+ "description": "Converts a geographic coordinate to a point in the given view’s coordinate system.",
+ "examples": [
+ "\nconst pointInView = await this._map.getPointInView([-37.817070, 144.949901]);\n\n"
+ ]
+ },
+ {
+ "name": "getCoordinateFromView",
+ "docblock": "Converts a point in the given view’s coordinate system to a geographic coordinate.\n\n@example\nconst coordinate = await this._map.getCoordinateFromView([100, 100]);\n\n@param {Array} point - A point expressed in the given view’s coordinate system.\n@return {Array}",
+ "modifiers": [
+ "async"
+ ],
+ "params": [
+ {
+ "name": "point",
+ "description": "A point expressed in the given view’s coordinate system.",
+ "type": {
+ "name": "Position"
+ },
+ "optional": false
+ }
+ ],
+ "returns": {
+ "type": {
+ "name": "Promise",
+ "elements": [
+ {
+ "name": "Position"
+ }
+ ],
+ "raw": "Promise"
+ }
+ },
+ "description": "Converts a point in the given view’s coordinate system to a geographic coordinate.",
+ "examples": [
+ "\nconst coordinate = await this._map.getCoordinateFromView([100, 100]);\n\n"
+ ]
+ },
+ {
+ "name": "getVisibleBounds",
+ "docblock": "The coordinate bounds (ne, sw) visible in the user’s viewport.\n\n@example\nconst visibleBounds = await this._map.getVisibleBounds();\n\n@return {Array}",
+ "modifiers": [
+ "async"
+ ],
+ "params": [],
+ "returns": {
+ "type": {
+ "name": "Promise",
+ "elements": [
+ {
+ "name": "tuple",
+ "raw": "[Position, Position]",
+ "elements": [
+ {
+ "name": "Position"
+ },
+ {
+ "name": "Position"
+ }
+ ]
+ }
+ ],
+ "raw": "Promise<[Position, Position]>"
+ }
+ },
+ "description": "The coordinate bounds (ne, sw) visible in the user’s viewport.",
+ "examples": [
+ "\nconst visibleBounds = await this._map.getVisibleBounds();\n\n"
+ ]
+ },
+ {
+ "name": "queryRenderedFeaturesAtPoint",
+ "docblock": "Returns an array of rendered map features that intersect with a given point.\n\n@example\nthis._map.queryRenderedFeaturesAtPoint([30, 40], ['==', 'type', 'Point'], ['id1', 'id2'])\n\n@param {Array} coordinate - A point expressed in the map view’s coordinate system.\n@param {Array=} filter - A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array.\n@param {Array=} layerIDs - A array of layer id's to filter the features by\n@return {FeatureCollection}",
+ "modifiers": [
+ "async"
+ ],
+ "params": [
+ {
+ "name": "coordinate",
+ "description": "A point expressed in the map view’s coordinate system.",
+ "type": {
+ "name": "Position"
+ },
+ "optional": false
+ },
+ {
+ "name": "filter",
+ "description": "A set of strings that correspond to the names of layers defined in the current style. Only the features contained in these layers are included in the returned array.",
+ "type": {
+ "name": "Array"
+ },
+ "optional": true
+ },
+ {
+ "name": "layerIDs",
+ "description": "A array of layer id's to filter the features by",
+ "type": {
+ "name": "Array"
+ },
+ "optional": true
+ }
+ ],
+ "returns": {
+ "type": {
+ "name": "Promise",
+ "elements": [
+ {
+ "name": "union",
+ "raw": "GeoJSON.FeatureCollection | undefined",
+ "elements": [
+ {
+ "name": "GeoJSON.FeatureCollection"
+ },
+ {
+ "name": "undefined"
+ }
+ ]
+ }
+ ],
+ "raw": "Promise"
+ }
+ },
+ "description": "Returns an array of rendered map features that intersect with a given point.",
+ "examples": [
+ "\nthis._map.queryRenderedFeaturesAtPoint([30, 40], ['==', 'type', 'Point'], ['id1', 'id2'])\n\n"
+ ]
+ },
+ {
+ "name": "queryRenderedFeaturesInRect",
+ "docblock": "Returns an array of rendered map features that intersect with the given rectangle,\nrestricted to the given style layers and filtered by the given predicate. In v10,\npassing an empty array will query the entire visible bounds of the map.\n\n@example\nthis._map.queryRenderedFeaturesInRect([30, 40, 20, 10], ['==', 'type', 'Point'], ['id1', 'id2'])\n\n@param {Array