Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/src/function_registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ enum FunctionId {
FnAuthAddAuthStateListener,
FnAuthRemoveAuthStateListener,
FnAppCheckGetTokenAsync,
FnAppCheckAddListener,
FnAppCheckRemoveListener,
};

// Class for providing a generic way for firebase libraries to expose their
Expand Down
2 changes: 1 addition & 1 deletion app_check/integration_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ endif()
# Add the Firebase libraries to the target using the function from the SDK.
add_subdirectory(${FIREBASE_CPP_SDK_DIR} bin/ EXCLUDE_FROM_ALL)
# Note that firebase_app needs to be last in the list.
set(firebase_libs firebase_app_check firebase_database firebase_storage firebase_functions firebase_auth firebase_app)
set(firebase_libs firebase_app_check firebase_database firebase_storage firebase_functions firebase_firestore firebase_auth firebase_app)
set(gtest_libs gtest gmock)
target_link_libraries(${integration_test_target_name} ${firebase_libs}
${gtest_libs} ${ADDITIONAL_LIBS})
2 changes: 2 additions & 0 deletions app_check/integration_test/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ target 'integration_test' do
pod 'Firebase/Auth', '10.6.0'
pod 'Firebase/Storage', '10.6.0'
pod 'Firebase/Functions', '10.6.0'
pod 'Firebase/Firestore', '10.6.0'
end

target 'integration_test_tvos' do
Expand All @@ -18,6 +19,7 @@ target 'integration_test_tvos' do
pod 'Firebase/Auth', '10.6.0'
pod 'Firebase/Storage', '10.6.0'
pod 'Firebase/Functions', '10.6.0'
pod 'Firebase/Firestore', '10.6.0'
end

post_install do |installer|
Expand Down
4 changes: 3 additions & 1 deletion app_check/integration_test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ android {
"-DFIREBASE_INCLUDE_AUTH=ON",
"-DFIREBASE_INCLUDE_DATABASE=ON",
"-DFIREBASE_INCLUDE_STORAGE=ON",
"-DFIREBASE_INCLUDE_FUNCTIONS=ON"
"-DFIREBASE_INCLUDE_FUNCTIONS=ON",
"-DFIREBASE_INCLUDE_FIRESTORE=ON"
}
}
externalNativeBuild.cmake {
Expand All @@ -87,6 +88,7 @@ firebaseCpp.dependencies {
database
storage
functions
firestore
}

apply plugin: 'com.google.gms.google-services'
Expand Down
Loading