Firebase is Google's mobile platform that helps you quickly develop high-quality apps and grow your business. This repository contains the core components required by the various products included in Firebase. It is not intended for use on its own.
Use this guide when setting up or upgrading this core extension and the extensions for each of the Firebase products (such as analytics and remote config). The extensions are using the Firebase C++ SDK and the Firebase iOS SDK.
- Firebase C++ SDK download link: https://firebase.google.com/download/cpp
- Firebase C++ SDK direct download link: https://dl.google.com/firebase/sdk/cpp/firebase_cpp_sdk_8.8.0.zip
Copy header files from firebase_cpp_sdk/include
.
The Gradle dependencies used by this extension need to match the ones specified in the Firebase C++ SDK.
- Add Gradle dependencies to
extension/manifests/android/build.gradle
- Specified in
firebase_cpp_sdk/Android/firebase_dependencies.gradle
->firebaseDependenciesMap
- Or in
firebase_cpp_sdk/readme.md
- Specified in
Android C++ libraries should be copied from the Firebase C++ SDK to your extension.
- Copy libs from Firebase C++ SDK
firebase_cpp_sdk/libs/android/armeabi-v7a/c++/*
firebase_cpp_sdk/libs/android/arm64-v8a/c++/*
The Cocoapod dependencies used by this extension need to match the ones specified in the Firebase C++ SDK.
- Add Cocoapod dependencies to
extension/manifest/ios/Podfile
iOS C++ libraries should be copied from the Firebase C++ SDK to your extension.
- Copy libs from the Firebase C++ SDK
firebase_cpp_sdk/libs/ios/device-arm64/
->extension/lib/arm64-ios/
firebase_cpp_sdk/libs/ios/device-armv7/
->extension/lib/armv7-ios/
firebase_cpp_sdk/libs/ios/simulator-x86_64/
->extension/lib/x86_64-ios/