Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.36 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.36 KB

Vouched React Native Example

Getting Started

If this is your first time implementing a React Native application, please read how to set up your environment for the platform and mobile devices you plan to deploy to.

Environment

From the vouched portal, go to the settings menu, and create a public key, which will be used to communicate with the Vouched service.

Create .env in the root of the example directory, replacing <PUBLIC_KEY> with your actual public key

PUBLIC_KEY=<PUBLIC_KEY>

Build

# npm
yarn install

# pods
cd ios && pod install && cd ..

Run

Unfortunately, cameras are not supported in simulators so the best way to run the example is on a real device. Once your device is plugged in, follow the instructions:

Start metro server

yarn start

Run on Android

react-native run-android

Alternatively, you can start Android Studio and run and debug the app. This option may require you to reverse port in order to connect to the metro server.

adb -s YOUR_DEVICE_ID reverse tcp:8081 tcp:8081

Run on iOS
Start Xcode and run the app.

xed ios/example.xcworkspace

You will need to assign a bundle id and a related developer account within Xcode to run on an iOS device