├── .editorconfig ├── .github ├── actions │ ├── build-app │ │ └── action.yml │ ├── install-dependencies │ │ └── action.yml │ ├── install-maestro │ │ └── action.yml │ ├── lock-java-ver │ │ └── action.yml │ ├── lock-nodejs-ver │ │ └── action.yml │ ├── lock-ruby-ver │ │ └── action.yml │ ├── run-android-e2e │ │ └── action.yml │ ├── run-e2e │ │ └── action.yml │ ├── run-ios-e2e │ │ └── action.yml │ └── run-ios-simulator │ │ └── action.yml └── workflows │ ├── ci.yaml │ └── e2e.yaml ├── .gitignore ├── .maestro ├── _App.js ├── _wait_to_open_app.yaml └── is_detect.yaml ├── DetectMaestro.podspec ├── LICENSE ├── README.md ├── android ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ │ └── com │ │ └── retyui │ │ └── detectmaestro │ │ ├── DetectMaestroModuleImpl.kt │ │ └── DetectMaestroTurboPackage.kt │ ├── newarch │ └── java │ │ └── com │ │ └── retyui │ │ └── detectmaestro │ │ └── DetectMaestroModule.kt │ └── oldarch │ └── java │ └── com │ └── retyui │ └── detectmaestro │ └── DetectMaestroModule.kt ├── ios ├── DetectMaestroModule.h ├── DetectMaestroModule.mm ├── DetectMaestroModuleImpl.swift └── DetectMaestroPackage-Bridging-Header.h ├── package.json ├── scripts └── android_run_e2e.sh ├── src ├── NativeDetectMaestroModule.ts └── index.ts ├── tsconfig-base.json ├── tsconfig-cjs.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/actions/build-app/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/build-app/action.yml -------------------------------------------------------------------------------- /.github/actions/install-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/install-dependencies/action.yml -------------------------------------------------------------------------------- /.github/actions/install-maestro/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/install-maestro/action.yml -------------------------------------------------------------------------------- /.github/actions/lock-java-ver/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/lock-java-ver/action.yml -------------------------------------------------------------------------------- /.github/actions/lock-nodejs-ver/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/lock-nodejs-ver/action.yml -------------------------------------------------------------------------------- /.github/actions/lock-ruby-ver/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/lock-ruby-ver/action.yml -------------------------------------------------------------------------------- /.github/actions/run-android-e2e/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/run-android-e2e/action.yml -------------------------------------------------------------------------------- /.github/actions/run-e2e/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/run-e2e/action.yml -------------------------------------------------------------------------------- /.github/actions/run-ios-e2e/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/run-ios-e2e/action.yml -------------------------------------------------------------------------------- /.github/actions/run-ios-simulator/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/actions/run-ios-simulator/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.gitignore -------------------------------------------------------------------------------- /.maestro/_App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.maestro/_App.js -------------------------------------------------------------------------------- /.maestro/_wait_to_open_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.maestro/_wait_to_open_app.yaml -------------------------------------------------------------------------------- /.maestro/is_detect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/.maestro/is_detect.yaml -------------------------------------------------------------------------------- /DetectMaestro.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/DetectMaestro.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/retyui/detectmaestro/DetectMaestroModuleImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/main/java/com/retyui/detectmaestro/DetectMaestroModuleImpl.kt -------------------------------------------------------------------------------- /android/src/main/java/com/retyui/detectmaestro/DetectMaestroTurboPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/main/java/com/retyui/detectmaestro/DetectMaestroTurboPackage.kt -------------------------------------------------------------------------------- /android/src/newarch/java/com/retyui/detectmaestro/DetectMaestroModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/newarch/java/com/retyui/detectmaestro/DetectMaestroModule.kt -------------------------------------------------------------------------------- /android/src/oldarch/java/com/retyui/detectmaestro/DetectMaestroModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/android/src/oldarch/java/com/retyui/detectmaestro/DetectMaestroModule.kt -------------------------------------------------------------------------------- /ios/DetectMaestroModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/ios/DetectMaestroModule.h -------------------------------------------------------------------------------- /ios/DetectMaestroModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/ios/DetectMaestroModule.mm -------------------------------------------------------------------------------- /ios/DetectMaestroModuleImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/ios/DetectMaestroModuleImpl.swift -------------------------------------------------------------------------------- /ios/DetectMaestroPackage-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/package.json -------------------------------------------------------------------------------- /scripts/android_run_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/scripts/android_run_e2e.sh -------------------------------------------------------------------------------- /src/NativeDetectMaestroModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/src/NativeDetectMaestroModule.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/tsconfig-cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retyui/react-native-detect-maestro/HEAD/yarn.lock --------------------------------------------------------------------------------