
When integrating Firebase or related services into your Store2App-powered mobile app, you’ll need to include three important files. Each of them plays a specific role in allowing your app to communicate securely with Firebase services (like push notifications, authentication, Firestore, etc.).
google-services.json)This file contains configuration details specific to your Android app, like your Firebase project ID, API key, and app ID.
It tells Firebase which project your app belongs to, and allows Firebase SDKs to connect to the correct backend.
GoogleService-Info.plist)Similar to google-services.json, but for iOS. It contains your iOS app’s Firebase configuration.
It helps the iOS version of your app securely connect with Firebase services.
This is a private key file used for server-to-server communication with Firebase, such as sending push notifications or accessing Firebase Admin features securely.
It’s used only on the server, not in the app. In Store2App, it’s needed to send push notifications to users or manage data on behalf of the app securely.
This file should be kept private and secure. Do not upload it to public repositories.
Only you (the app owner or developer) should have access to the service-account.json file. It contains sensitive credentials.