gitextract_ood6vf5p/ ├── .circleci/ │ ├── config.yml │ └── test-deploy.yml ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .releaserc ├── .yamllint ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json └── src/ ├── @orb.yml ├── commands/ │ ├── android_build.yml │ ├── android_emulator_start.yml │ ├── bundle.yml │ ├── detox_build.yml │ ├── detox_test.yml │ ├── ios_build.yml │ ├── ios_simulator_start.yml │ ├── metro_start.yml │ ├── ndk_update.yml │ ├── pod_install.yml │ ├── setup_macos_executor.yml │ └── yarn_install.yml ├── examples/ │ ├── android.yml │ ├── full.yml │ └── ios.yml ├── executors/ │ ├── linux_android.yml │ ├── linux_js.yml │ └── macos.yml └── jobs/ ├── android_build.yml ├── android_test.yml ├── ios_build.yml └── ios_build_and_test.yml