Building a React Native app with verified location from scratch
In this post I will show you how to create a React Native app with Unveiler's verified location technology from scratch. You don't need prior experience with React or React Native in order to be able to follow this guide.
You can find the source code of the end result on Github.
#
Setup Development EnvironmentIf you already have developed React Native apps before on Android on your development workstation, then you should be able to skip this step. Here we will not be covering the development environment setup process in detail, as the React Native documentation has an excellent guide on how to configure your development environment for React Native. Make sure to follow the instructions for "React Native CLI Quickstart" (rather than the default "Expo CLI Quickstart") with as target OS "Android".
#
Initialize ProjectLet's bootstrap a React Native app, run the following command:
npx react-native init MyUnveilerApp
This will give you a bare React Native app, try to launch it on your Android device:
yarn run android
#
Integrating with UnveilerNext up we will be integrating with Unveiler by using our React Native client. This client makes it a lot easier to get started with Unveiler, as it takes care of all the GNSS specifics for you. It's completely open-source, so feel free to dig into it here if you're interested to get to know the inner workings.
@unveiler.io/react-native-client
as a Dependency#
Install Let's start by adding our React Native client by running the following command:
yarn add @unveiler.io/react-native-client
#
Adding the Unveiler ClientOpen App.js
and replace its content with the following code snippet:
import React from 'react'import { StyleSheet, View, Text, Button } from 'react-native'
import { UnveilerClient, useLazyVerifiedLocation } from '@unveiler.io/react-native-client'
const client = new UnveilerClient({ apiKey: 'YOUR_API_KEY' })
const App = () => { const { claim, state, submit } = useLazyVerifiedLocation({ client })
return ( <View style={styles.container}> <Text style={styles.titleText}>My Unveiler App</Text> <Text>State: {state.toLocaleUpperCase()}</Text> {submit && <Button onPress={submit} title={'Submit'} />} {claim && ( <Text> {claim.location.latitude}, {claim.location.longitude} </Text> )} </View> )}
const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: 10, }, titleText: { fontSize: 20, fontWeight: 'bold', },})
export default App
#
Create Unveiler API KeyThe last step is to add a Unveiler API key.
Go to dashboard.unveiler.io and create a new API key.
Copy this new key and replace YOUR_API_KEY
in App.js
with the API key you just obtained.
#
Take It For a SpinRe-start your app by running the following command again while your phone is connected:
yarn run android
Wait until the "Submit" button appears, then you can press it to send your first verified-location request ๐.
note
If you're experiencing issues, then try completely removing the app. The hot-reloading of React Native sometimes breaks the connection to the native Android code collecting the data for the Unveiler client.
The end-result should look something like this:
#
Next StepsNormally you will want to have the certainty from verified location on your backend services.
For this you can use the JWT returned by useLazyVerifiedLocation
and send it to your own backend.
There you can validate the JWT, such that you can be certain about the user's location.
The documentation covers how to work with JWTs on your backend.