Skip to content

Latest commit

 

History

History
149 lines (118 loc) · 6.46 KB

README.md

File metadata and controls

149 lines (118 loc) · 6.46 KB

React Native Test App

Contributions Welcome Open in Visual Studio Code build npm version

React Native Test App (RNTA) provides test apps for all platforms as a package. It handles the native bits for you so you can focus on what's important: your product.

Quick Start ⚡

If you want to migrate an existing test app for a library, follow the dedicated guide in the wiki.

You can generate a new project using npx:

npx --package react-native-test-app@<version> init
# For example: npx --package [email protected] init

You can always find the latest version here: https://github.com/microsoft/react-native-test-app/releases

Alternatively, if you're using a Bash-compatible shell:

npx --package react-native-test-app@$(npm view react-native-test-app version) init

Note

We don't recommend using @latest because npm may not always use the latest version. See npm/cli#5262 for more details.

In this example, we will create a project named "sample" in sample with apps for all platforms:

✔ What is the name of your test app? … sample
? Which platforms do you need test apps for? ›
Instructions:
    ↑/↓: Highlight option
    ←/→/[space]: Toggle selection
    a: Toggle all
    enter/return: Complete answer
◉   Android
◉   iOS
◉   macOS
◯   visionOS
◉   Windows
✔ Where should we create the new project? … sample

Install npm dependencies inside the new project folder:

Yarn:

cd sample
yarn

npm:

cd sample
npm install

Once the dependencies are installed, follow the platform specific instructions in the wiki.

Learn More 🔍

Libraries Using RNTA 📚

microsoft/fluentui-react-nativemicrosoft/rnx-kitBabylonReactNativecallstack/repacklottie-react-nativereact-native-add-calendar-eventreact-native-apple-authenticationreact-native-async-storagereact-native-blurreact-native-clipboardreact-native-datetimepickerreact-native-google-signinreact-native-image-editorreact-native-keychainreact-native-masked-viewreact-native-menureact-native-netinforeact-native-pager-viewreact-native-safe-area-contextreact-native-segmented-controlreact-native-videoreact-native-webviewrealm-jsshopify/restylesparkfabrik-react-native-idfa-aaidand many more…

Are you using RNTA? Submit a PR to add it to the list!

Known Issues ⚠️

For a list of known issues and workarounds, please refer to the Troubleshooting wiki.

Contributing 🤝

Thank you for your interest in this project! We welcome all contributions and suggestions!

Take a look at CONTRIBUTING.md for details.

License 📝

react-native-test-app is MIT licensed.