Skip to content

curityio/react-native-haapi-example

Repository files navigation

React Native example using HAAPI

Quality Availability

Getting Started

Note: Make sure you have completed the React Native - Environment Setup instructions till "Creating a new application" step, before proceeding.

To install necessary dependencies, run

npm install

Development modules

To be able to run unreleased modules, you need to checkout the module repo and update the dependency to be file based. First, create the package:

git clone https://github.com/curityio/react-native-haapi-module.git
cd react-native-haapi-module
npm pack

This should create a .tgz file.

Then we can update the depdencies.

npm uninstall @curity/react-native-haapi-module
npm install <path-to-file>.tgz --save

Step 1: Start the Metro Server

First, you will need to start Metro, the JavaScript bundler that ships with React Native.

To start Metro, run the following command from the root of your React Native project:

# using npm
npm start

# OR using Yarn
yarn start

Step 2: Start your Application

Let Metro Bundler run in its own terminal. Open a new terminal from the root of your React Native project. Run the following command to start your Android or iOS app:

For Android

# using npm
npm run android

# OR using Yarn
yarn android

For iOS

# using npm
npm run ios

# OR using Yarn
yarn ios

If everything is set up correctly, you should see your new app running in your Android Emulator or iOS Simulator shortly provided you have set up your emulator/simulator correctly.

This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively.

Curity Identity Server configuration

To configure clients needed for this example to run, theres a Config Spec that can be imported using the admin UI in Changes -> Run Config Spec. Running this spec will prompt you for the relevant information needed to setup the server for using HAAPI with attestation, and fallback dynamic registration when attestation is not supported.

About

An example using the HAAPI React Native modules

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published