A mobile application that uses AR and Geolocation technology to display reviews for related nearby venues.
Application compatible with iOS and Android.
- React Native - Cross-Platform Mobile Development
- ViroAR - Cross-Platform AR Development
- Google Maps API - Geolocation Features
- ReviewAR API - Backend of ReviewAR
npm install
cd ios
pod install
cd ..
Note: On Xcode, Signing and Certificates should be individual to your machine, i.e., Team: 'Your Personal Team', Bundle Identifier: 'Unique Bundle Identifier'
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:
npm start
Warning: Due to limitations of the Apple Simulator and the Android Emulator, you must run your project on a physical device.
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:
# iOS
npx react-native run-ios
# Android
npx react-native run-android
Note: Run
npx react-native doctor
to ensure you have all the required software needed to bundle the app
If everything is set up correctly, you should see your new app running on your device.