Installation
Quizzelda Mobile App
What Prerequisite knowledge do you need to run this app ?
Prerequisite Credentials you need to obtain in order to run this app
Facebook App Id
Firebase app with relevant configuration files for android, ios and web
Installation Guide
Run yarn install on the root folder
Prerequisites
Firebase
Please refer to this docs for adding rn-firebase to project : https://rnfirebase.io/
Create new firebase project
Download config files to the relevant directories in /android and /ios folders.
Enable the following sign in methods : Email/Password, Facebook, Apple Sign In and Anonymous
Create Firestore database
Create 2 composite indexes (not mandatory at this stage as after you run app you would get an error with link to create those indexes) : a. collection id - quizzes, field path - category Ascending and field path = date Descending b. collection id - quizzes, field path - id Ascending and field path = date Descending
Create new facebook app and follow instructions for the quick start and how to configure the app id in the android and ios apps
Apple
Enable apple sign in and push notifications via developer console, go to apple developer and to your account, identifiers , choose your app identifier, and enable push notifications and apple sign in capabilities.
Installation
Im referring in this section to the relevant docs of the platforms, as its better to read the updated docs directly from the platforms websites
react native firebase config's - please refer to docs here in this sections: a. app b. authentication c. firestore
Please note, react native firebase already includes all the xcode frameworks ,so please do not install them manually as it would cause many build errors
apple sign in - enable apple sign in by going to your app target -> capabillities and enable Apple Sign In
react native paper - refer to docs here. a. please note - as react native paper uses react-native-vector-icons, there is need to manually install this fonts. android - please add this gradle line in the bottom of your app build.gradle file :
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
where you should replace node modules with your library path if its different in ios you should manually install each of the fonts by downloading them and adding them into info.plist file. example :<key>UIAppFonts</key> <array> <string>FontAwesome.ttf</string> <string>MaterialIcons.ttf</string> <string>MaterialCommunityIcons.ttf</string> <string>Montserrat-Black.ttf</string> <string>Montserrat-BlackItalic.ttf</string> <string>Montserrat-Bold.ttf</string> <string>Montserrat-BoldItalic.ttf</string> <string>Montserrat-ExtraBold.ttf</string> <string>Montserrat-ExtraBoldItalic.ttf</string> <string>Montserrat-ExtraLight.ttf</string> <string>Montserrat-ExtraLightItalic.ttf</string> <string>Montserrat-Italic.ttf</string> <string>Montserrat-Light.ttf</string> <string>Montserrat-LightItalic.ttf</string> <string>Montserrat-Medium.ttf</string> <string>Montserrat-MediumItalic.ttf</string> <string>Montserrat-Regular.ttf</string> <string>Montserrat-SemiBold.ttf</string> <string>Montserrat-SemiBoldItalic.ttf</string> <string>Montserrat-Thin.ttf</string> <string>Montserrat-ThinItalic.ttf</string> </array>
Next, you'll need to add facebook data:
Android: create file names strings.xml in res/values folder, and add there the following data
For IOS : add these to the info.plist file :
b. also add all the roboto fonts to the project - you can download them from here. please refer here how to add fonts to react native project.
android - add multidex
Deploying mobile app locally
run yarn install from root folder
Lunch ios emulator and click on play in xcode
For android there is need to run react-native run-android to start metro server if its didnt start yet
Deploying mobile app in production
refer to android docs on how to create signed apk or app bundle
Create user in google play console and follow instructions
IOS - refer to this guide how to prepare your app for distribution
Create app in apple developer - and buy subscription if you don't have one yet
Next steps is to follow the installation guide
Dashboard
After installing mobile app, dashboard should be quite simple to install as it contain already node and react.
Installation guide for web
Install firebase cli using this guide
Install libs using yarn install from root of /quizzelda-web folder
To run just use yarn build form root fo/quizzelda-web
adding firebase creds
create file names config.json in quizzelda-web/src/lib directory
add the following code there
Deploying guide locally
After yarn start it should open chrome page with localhost:3000 and thats it
Deploying guide to production
If you want to use firebase hosting you can sue this guide to deploy it there.
Last updated
Was this helpful?