Firebase setup for Saral App Telemetry
Firebase setup for Saral App Telemetry
Setup react native side
Some libraries have to be installed to add firebase Google Analytics and firebase Google Crashlytics in react native
Add In your module (app-level) Gradle file under dependencies
On the top of (app-level) Gradle file add this line
Add In your root-level (project-level) Gradle file under dependencies
Add In your frontend/SaralApp/android/app/src/main/AndroidManifest.xml
To link the app to firebase, go to the firebae console and make project
To link the app after the project is created
Add google-service.json under android/app
Firebase Analytics Run time configuration
For enable or disable at run time environment firebase_analytics_collection_enabled in App.js file frontend/SaralApp/App.js
You need to add flag isFBAnalyticsEnabled in login api
/schools/login
Response from api
"school": { "storeTrainingData": true, "name": "Dummy school 4", "schoolId": "u002", "state": "up", "district": "district1", "autoSync": true, "autoSyncFrequency": 900000, "tags": true, "autoSyncBatchSize": 10, "offlineMode": true, "isAppForceUpdateEnabled": false, "isFBAnalyticsEnabled": true, "userId": "u002" }
Add in code useEffect(async()=>{ let hasFBAnalytics = await getLoginData();
DEV variable. By default if you run your app with npx react-native run-android, it will run in Debug mode and DEV will be true. In release mode, DEV will be false. Here hasFBAnalyticsValue is the flag which will come from backend as boolean. If mobile is not connected with internet then data will not pushed to the firebase
After adding all dependencie rebuild the app using npx react-native run-android
Firebase Pricing plans
Get started at no cost,then pay as you go. Firebase service will be free of cost for some time but after some time events triggered it will be chargeable Here is the link for know all plans pricing plans
Last updated