├── .allstar └── binary_artifacts.yaml ├── .clang-format ├── .gitallowed ├── .github ├── ISSUE_TEMPLATE │ ├── --general-question.md │ ├── feature-request.md │ └── issue.md └── workflows │ ├── android.yml │ ├── build-report.yml │ ├── checks.yml │ ├── checks_secure.yml │ ├── cpp-packaging.yml │ ├── desktop.yml │ ├── integration_tests.yml │ ├── ios.yml │ ├── lint.yml │ ├── retry-test-failures.yml │ ├── reviewer-roulette.yml │ ├── update-custom-runner.yml │ ├── update-dependencies.yml │ └── update-feature-branches.yml ├── .gitignore ├── .gitmodules ├── Android └── firebase_dependencies.gradle ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analytics ├── CMakeLists.txt ├── NOTICES ├── build.gradle ├── generate_constants.py ├── generate_constants_lib.py ├── generate_constants_test.py ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── readme.md │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── ios_headers │ ├── .clang-format │ ├── FIREventNames.h │ ├── FIRParameterNames.h │ └── FIRUserPropertyNames.h ├── src │ ├── analytics_android.cc │ ├── analytics_common.cc │ ├── analytics_common.h │ ├── analytics_ios.mm │ ├── analytics_stub.cc │ └── include │ │ └── firebase │ │ └── analytics.h ├── src_ios │ └── fake │ │ ├── .clang-format │ │ ├── FIRAnalytics.h │ │ └── FIRAnalytics.mm ├── src_java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ └── analytics │ │ └── FirebaseAnalytics.java └── tests │ ├── CMakeLists.txt │ └── analytics_test.cc ├── android_build_files ├── AndroidManifest.xml ├── android_abis.gradle ├── extract_and_dex.gradle └── generate_proguard.gradle ├── app ├── CMakeLists.txt ├── app_additional.pro ├── app_resources │ └── build.gradle ├── build.gradle ├── google_api_resources │ └── build.gradle ├── google_services.fbs ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── invites_resources │ └── build.gradle ├── rest │ ├── CMakeLists.txt │ ├── controller_curl.cc │ ├── controller_curl.h │ ├── controller_interface.cc │ ├── controller_interface.h │ ├── gzipheader.cc │ ├── gzipheader.h │ ├── request.cc │ ├── request.h │ ├── request_binary.h │ ├── request_binary_gzip.cc │ ├── request_binary_gzip.h │ ├── request_file.cc │ ├── request_file.h │ ├── request_json.h │ ├── request_options.h │ ├── response.cc │ ├── response.h │ ├── response_binary.cc │ ├── response_binary.h │ ├── response_json.h │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── gzipheader_unittest.cc │ │ ├── request_binary_test.cc │ │ ├── request_file_test.cc │ │ ├── request_json_test.cc │ │ ├── request_test.cc │ │ ├── request_test.h │ │ ├── response_binary_test.cc │ │ ├── response_json_test.cc │ │ ├── response_test.cc │ │ ├── testdata │ │ │ └── sample.fbs │ │ ├── transport_curl_test.cc │ │ ├── transport_mock_test.cc │ │ ├── util_test.cc │ │ ├── www_form_url_encoded_test.cc │ │ └── zlibwrapper_unittest.cc │ ├── transfer_interface.h │ ├── transport_builder.cc │ ├── transport_builder.h │ ├── transport_curl.cc │ ├── transport_curl.h │ ├── transport_interface.cc │ ├── transport_interface.h │ ├── transport_mock.cc │ ├── transport_mock.h │ ├── util.cc │ ├── util.h │ ├── www_form_url_encoded.cc │ ├── www_form_url_encoded.h │ ├── zlibwrapper.cc │ └── zlibwrapper.h ├── src │ ├── app_android.cc │ ├── app_android.h │ ├── app_common.cc │ ├── app_common.h │ ├── app_desktop.cc │ ├── app_desktop.h │ ├── app_identifier.cc │ ├── app_identifier.h │ ├── app_ios.h │ ├── app_ios.mm │ ├── app_options.cc │ ├── app_stub.cc │ ├── assert.h │ ├── base64.cc │ ├── base64.h │ ├── base64_fuzzer.cc │ ├── callback.cc │ ├── callback.h │ ├── cleanup_notifier.cc │ ├── cleanup_notifier.h │ ├── embedded_file.h │ ├── fake │ │ ├── .clang-format │ │ ├── FIRApp.h │ │ ├── FIRApp.mm │ │ ├── FIRConfiguration.h │ │ ├── FIRConfiguration.m │ │ ├── FIRLogger.h │ │ ├── FIRLoggerLevel.h │ │ ├── FIROptions.h │ │ └── FIROptions.mm │ ├── filesystem.h │ ├── filesystem_apple.mm │ ├── filesystem_desktop_linux.cc │ ├── filesystem_desktop_windows.cc │ ├── function_registry.cc │ ├── function_registry.h │ ├── future.cc │ ├── future_manager.cc │ ├── future_manager.h │ ├── google_play_services │ │ ├── availability_android.cc │ │ └── availability_android.h │ ├── heartbeat │ │ ├── date_provider.cc │ │ ├── date_provider.h │ │ ├── heartbeat_controller_desktop.cc │ │ ├── heartbeat_controller_desktop.h │ │ ├── heartbeat_storage_desktop.cc │ │ ├── heartbeat_storage_desktop.h │ │ └── schemas │ │ │ └── logged_heartbeats.fbs │ ├── include │ │ ├── firebase │ │ │ ├── app.h │ │ │ ├── future.h │ │ │ ├── internal │ │ │ │ ├── common.h │ │ │ │ ├── future_impl.h │ │ │ │ ├── mutex.h │ │ │ │ ├── platform.h │ │ │ │ └── type_traits.h │ │ │ ├── log.h │ │ │ ├── util.h │ │ │ └── variant.h │ │ └── google_play_services │ │ │ └── availability.h │ ├── intrusive_list.h │ ├── invites │ │ ├── android │ │ │ ├── invites_android_helper.cc │ │ │ ├── invites_android_helper.h │ │ │ ├── invites_receiver_internal_android.cc │ │ │ └── invites_receiver_internal_android.h │ │ ├── cached_receiver.cc │ │ ├── cached_receiver.h │ │ ├── invites_receiver_internal.cc │ │ ├── invites_receiver_internal.h │ │ ├── ios │ │ │ ├── .clang-format │ │ │ ├── invites_ios_startup.h │ │ │ ├── invites_ios_startup.mm │ │ │ ├── invites_receiver_internal_ios.h │ │ │ └── invites_receiver_internal_ios.mm │ │ ├── receiver_interface.h │ │ ├── sender_receiver_interface.h │ │ └── stub │ │ │ ├── invites_receiver_internal_stub.cc │ │ │ └── invites_receiver_internal_stub.h │ ├── jobject_reference.cc │ ├── jobject_reference.h │ ├── locale.cc │ ├── locale.h │ ├── locale_apple.mm │ ├── log.cc │ ├── log.h │ ├── log_android.cc │ ├── log_android_callback.cc │ ├── log_ios.mm │ ├── log_stdio.cc │ ├── logger.cc │ ├── logger.h │ ├── mutex_pthread.cc │ ├── mutex_windows.cc │ ├── optional.h │ ├── path.cc │ ├── path.h │ ├── pthread_condvar.h │ ├── reference_count.h │ ├── reference_counted_future_impl.cc │ ├── reference_counted_future_impl.h │ ├── safe_reference.h │ ├── scheduler.cc │ ├── scheduler.h │ ├── secure │ │ ├── user_secure_darwin_internal.h │ │ ├── user_secure_darwin_internal.mm │ │ ├── user_secure_darwin_internal_testlib.h │ │ ├── user_secure_darwin_internal_testlib.mm │ │ ├── user_secure_data_handle.h │ │ ├── user_secure_fake_internal.cc │ │ ├── user_secure_fake_internal.h │ │ ├── user_secure_internal.h │ │ ├── user_secure_linux_internal.cc │ │ ├── user_secure_linux_internal.h │ │ ├── user_secure_manager.cc │ │ ├── user_secure_manager.h │ │ ├── user_secure_manager_fake.cc │ │ ├── user_secure_manager_fake.h │ │ ├── user_secure_windows_internal.cc │ │ └── user_secure_windows_internal.h │ ├── semaphore.h │ ├── tests │ │ └── runner │ │ │ └── ios │ │ │ ├── .clang-format │ │ │ ├── FIRAppDelegate.h │ │ │ ├── FIRAppDelegate.m │ │ │ ├── FIRViewController.h │ │ │ ├── FIRViewController.m │ │ │ ├── Info.plist │ │ │ └── main.m │ ├── thread.h │ ├── thread_cpp11.cc │ ├── thread_pthread.cc │ ├── time.cc │ ├── time.h │ ├── util.cc │ ├── util.h │ ├── util_android.cc │ ├── util_android.h │ ├── util_apple.h │ ├── util_apple.mm │ ├── util_ios.h │ ├── util_ios.mm │ ├── uuid.cc │ ├── uuid.h │ ├── uuid_ios_darwin.mm │ ├── variant.cc │ ├── variant_util.cc │ └── variant_util.h ├── src_java │ ├── com │ │ └── google │ │ │ └── firebase │ │ │ ├── app │ │ │ └── internal │ │ │ │ └── cpp │ │ │ │ ├── CppThreadDispatcher.java │ │ │ │ ├── CppThreadDispatcherContext.java │ │ │ │ ├── GoogleApiAvailabilityHelper.java │ │ │ │ ├── JniResultCallback.java │ │ │ │ └── Log.java │ │ │ └── dynamiclinks │ │ │ └── internal │ │ │ └── cpp │ │ │ └── DynamicLinksNativeWrapper.java │ └── fake │ │ └── com │ │ └── google │ │ ├── android │ │ └── gms │ │ │ ├── common │ │ │ └── GoogleApiAvailability.java │ │ │ └── tasks │ │ │ └── Task.java │ │ └── firebase │ │ ├── FirebaseApp.java │ │ ├── FirebaseException.java │ │ ├── FirebaseOptions.java │ │ ├── app │ │ └── internal │ │ │ └── cpp │ │ │ ├── CppThreadDispatcher.java │ │ │ ├── GoogleApiAvailabilityHelper.java │ │ │ └── JniResultCallback.java │ │ └── platforminfo │ │ └── GlobalLibraryVersionRegistrar.java ├── test_resources │ └── build.gradle └── tests │ ├── CMakeLists.txt │ ├── app_desktop_test.cc │ ├── app_test.cc │ ├── assert_test.cc │ ├── base64_openssh_test.cc │ ├── base64_test.cc │ ├── callback_test.cc │ ├── cleanup_notifier_test.cc │ ├── flexbuffer_matcher.cc │ ├── flexbuffer_matcher.h │ ├── flexbuffer_matcher_test.cc │ ├── future_manager_test.cc │ ├── future_test.cc │ ├── google_play_services │ └── availability_android_test.cc │ ├── google_services_test.cc │ ├── heartbeat_controller_desktop_test.cc │ ├── heartbeat_storage_desktop_test.cc │ ├── include │ └── firebase │ │ └── app_for_testing.h │ ├── intrusive_list_test.cc │ ├── jobject_reference_test.cc │ ├── locale_test.cc │ ├── log_test.cc │ ├── logger_test.cc │ ├── optional_test.cc │ ├── path_test.cc │ ├── reference_count_test.cc │ ├── scheduler_test.cc │ ├── secure │ ├── user_secure_integration_test.cc │ ├── user_secure_internal_test.cc │ └── user_secure_manager_test.cc │ ├── semaphore_test.cc │ ├── swizzle_test.mm │ ├── thread_test.cc │ ├── time_test.cc │ ├── util_android_test.cc │ ├── util_ios_test.mm │ ├── util_test.cc │ ├── uuid_test.cc │ ├── variant_test.cc │ └── variant_util_test.cc ├── app_check ├── CMakeLists.txt ├── app_check_resources │ └── build.gradle ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── functions │ │ ├── README.md │ │ ├── firebase.json │ │ └── functions │ │ │ ├── index.js │ │ │ └── package.json │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── integration_test.xcscheme │ │ │ └── integration_test_tvos.xcscheme │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── src │ ├── android │ │ ├── app_check_android.cc │ │ ├── app_check_android.h │ │ ├── common_android.cc │ │ ├── common_android.h │ │ ├── debug_provider_android.cc │ │ ├── debug_provider_android.h │ │ ├── play_integrity_provider_android.cc │ │ └── play_integrity_provider_android.h │ ├── common │ │ ├── app_check.cc │ │ ├── common.h │ │ └── debug_provider_common.cc │ ├── desktop │ │ ├── app_check_desktop.cc │ │ ├── app_check_desktop.h │ │ ├── debug_provider_desktop.cc │ │ ├── debug_provider_desktop.h │ │ ├── debug_token_request.fbs │ │ ├── debug_token_request.h │ │ ├── token_response.fbs │ │ └── token_response.h │ ├── include │ │ └── firebase │ │ │ ├── app_check.h │ │ │ └── app_check │ │ │ ├── app_attest_provider.h │ │ │ ├── debug_provider.h │ │ │ ├── device_check_provider.h │ │ │ └── play_integrity_provider.h │ ├── ios │ │ ├── app_attest_provider_ios.h │ │ ├── app_attest_provider_ios.mm │ │ ├── app_check_ios.h │ │ ├── app_check_ios.mm │ │ ├── debug_provider_ios.h │ │ ├── debug_provider_ios.mm │ │ ├── device_check_provider_ios.h │ │ ├── device_check_provider_ios.mm │ │ ├── util_ios.h │ │ └── util_ios.mm │ └── stub │ │ ├── app_attest_provider_stub.cc │ │ ├── device_check_provider_stub.cc │ │ └── play_integrity_provider_stub.cc └── src_java │ └── com │ └── google │ └── firebase │ └── appcheck │ └── internal │ └── cpp │ ├── JniAppCheckDebugHelper.java │ ├── JniAppCheckListener.java │ ├── JniAppCheckProvider.java │ ├── JniAppCheckProviderFactory.java │ └── JniAppCheckToken.java ├── auth ├── CMakeLists.txt ├── NOTICES ├── auth_additional.pro ├── auth_resources │ └── build.gradle ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.entitlements │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── samples │ └── src │ │ └── doc_samples.cc ├── src │ ├── android │ │ ├── auth_android.cc │ │ ├── common_android.cc │ │ ├── common_android.h │ │ ├── credential_android.cc │ │ └── user_android.cc │ ├── auth.cc │ ├── common.cc │ ├── common.h │ ├── credential.cc │ ├── data.h │ ├── desktop │ │ ├── auth_constants.cc │ │ ├── auth_constants.h │ │ ├── auth_credential.cc │ │ ├── auth_credential.h │ │ ├── auth_data_handle.h │ │ ├── auth_desktop.cc │ │ ├── auth_desktop.h │ │ ├── auth_providers │ │ │ ├── email_auth_credential.h │ │ │ ├── email_auth_provider.cc │ │ │ ├── facebook_auth_credential.h │ │ │ ├── facebook_auth_provider.cc │ │ │ ├── federated_auth_provider.cc │ │ │ ├── gamecenter_auth_provider.cc │ │ │ ├── github_auth_credential.h │ │ │ ├── github_auth_provider.cc │ │ │ ├── google_auth_credential.h │ │ │ ├── google_auth_provider.cc │ │ │ ├── oauth_auth_credential.h │ │ │ ├── oauth_auth_provider.cc │ │ │ ├── phone_auth_provider.cc │ │ │ ├── playgames_auth_credential.h │ │ │ ├── playgames_auth_provider.cc │ │ │ ├── twitter_auth_credential.h │ │ │ └── twitter_auth_provider.cc │ │ ├── auth_util.cc │ │ ├── auth_util.h │ │ ├── authentication_result.cc │ │ ├── authentication_result.h │ │ ├── credential_desktop.cc │ │ ├── credential_impl.cc │ │ ├── credential_impl.h │ │ ├── credential_util.cc │ │ ├── credential_util.h │ │ ├── get_account_info_result.cc │ │ ├── get_account_info_result.h │ │ ├── get_additional_user_info.cc │ │ ├── get_additional_user_info.h │ │ ├── identity_provider_credential.h │ │ ├── promise.h │ │ ├── provider_user_info.h │ │ ├── rpcs │ │ │ ├── auth_request.cc │ │ │ ├── auth_request.h │ │ │ ├── auth_response.cc │ │ │ ├── auth_response.h │ │ │ ├── create_auth_uri_request.cc │ │ │ ├── create_auth_uri_request.h │ │ │ ├── create_auth_uri_response.h │ │ │ ├── delete_account_request.cc │ │ │ ├── delete_account_request.h │ │ │ ├── delete_account_response.h │ │ │ ├── error_codes.cc │ │ │ ├── error_codes.h │ │ │ ├── get_account_info_request.cc │ │ │ ├── get_account_info_request.h │ │ │ ├── get_account_info_response.h │ │ │ ├── get_oob_confirmation_code_request.cc │ │ │ ├── get_oob_confirmation_code_request.h │ │ │ ├── get_oob_confirmation_code_response.h │ │ │ ├── request.fbs │ │ │ ├── reset_password_request.cc │ │ │ ├── reset_password_request.h │ │ │ ├── reset_password_response.h │ │ │ ├── response.fbs │ │ │ ├── secure_token_request.cc │ │ │ ├── secure_token_request.h │ │ │ ├── secure_token_response.h │ │ │ ├── set_account_info_request.cc │ │ │ ├── set_account_info_request.h │ │ │ ├── set_account_info_response.h │ │ │ ├── sign_up_new_user_request.cc │ │ │ ├── sign_up_new_user_request.h │ │ │ ├── sign_up_new_user_response.h │ │ │ ├── sign_up_request.cc │ │ │ ├── sign_up_request.h │ │ │ ├── verify_assertion_request.cc │ │ │ ├── verify_assertion_request.h │ │ │ ├── verify_assertion_response.h │ │ │ ├── verify_custom_token_request.cc │ │ │ ├── verify_custom_token_request.h │ │ │ ├── verify_custom_token_response.h │ │ │ ├── verify_password_request.cc │ │ │ ├── verify_password_request.h │ │ │ └── verify_password_response.h │ │ ├── set_account_info_result.cc │ │ ├── set_account_info_result.h │ │ ├── sign_in_flow.cc │ │ ├── sign_in_flow.h │ │ ├── user_data.fbs │ │ ├── user_desktop.cc │ │ ├── user_desktop.h │ │ ├── user_view.cc │ │ ├── user_view.h │ │ ├── validate_credential.h │ │ └── visual_studio_compatibility.h │ ├── include │ │ └── firebase │ │ │ ├── auth.h │ │ │ └── auth │ │ │ ├── credential.h │ │ │ ├── types.h │ │ │ └── user.h │ ├── ios │ │ ├── auth_ios.mm │ │ ├── common_ios.h │ │ ├── credential_ios.mm │ │ ├── fake │ │ │ ├── .clang-format │ │ │ ├── FIRActionCodeSettings.h │ │ │ ├── FIRAdditionalUserInfo.h │ │ │ ├── FIRAdditionalUserInfo.mm │ │ │ ├── FIRAuth.h │ │ │ ├── FIRAuth.mm │ │ │ ├── FIRAuthAPNSTokenType.h │ │ │ ├── FIRAuthCredential.h │ │ │ ├── FIRAuthCredential.mm │ │ │ ├── FIRAuthDataResult.h │ │ │ ├── FIRAuthDataResult.mm │ │ │ ├── FIRAuthErrors.h │ │ │ ├── FIRAuthSettings.h │ │ │ ├── FIRAuthTokenResult.h │ │ │ ├── FIRAuthUIDelegate.h │ │ │ ├── FIREmailAuthProvider.h │ │ │ ├── FIREmailAuthProvider.mm │ │ │ ├── FIRFacebookAuthProvider.h │ │ │ ├── FIRFacebookAuthProvider.mm │ │ │ ├── FIRFederatedAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.h │ │ │ ├── FIRGameCenterAuthProvider.mm │ │ │ ├── FIRGitHubAuthProvider.h │ │ │ ├── FIRGitHubAuthProvider.mm │ │ │ ├── FIRGoogleAuthProvider.h │ │ │ ├── FIRGoogleAuthProvider.mm │ │ │ ├── FIROAuthCredential.h │ │ │ ├── FIROAuthCredential.mm │ │ │ ├── FIROAuthProvider.h │ │ │ ├── FIROAuthProvider.mm │ │ │ ├── FIRPhoneAuthCredential.h │ │ │ ├── FIRPhoneAuthCredential.mm │ │ │ ├── FIRPhoneAuthProvider.h │ │ │ ├── FIRPhoneAuthProvider.mm │ │ │ ├── FIRTwitterAuthProvider.h │ │ │ ├── FIRTwitterAuthProvider.mm │ │ │ ├── FIRUser.h │ │ │ ├── FIRUser.mm │ │ │ ├── FIRUserInfo.h │ │ │ ├── FIRUserMetadata.h │ │ │ ├── FIRUserMetadata.mm │ │ │ ├── FirebaseAuth.h │ │ │ └── FirebaseAuthVersion.h │ │ └── user_ios.mm │ └── user.cc ├── src_java │ ├── com │ │ └── google │ │ │ └── firebase │ │ │ └── auth │ │ │ └── internal │ │ │ └── cpp │ │ │ ├── AuthCommon.java │ │ │ ├── JniAuthPhoneListener.java │ │ │ ├── JniAuthStateListener.java │ │ │ └── JniIdTokenListener.java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ ├── FirebaseApiNotAvailableException.java │ │ ├── FirebaseNetworkException.java │ │ ├── FirebaseTooManyRequestsException.java │ │ └── auth │ │ ├── AdditionalUserInfo.java │ │ ├── AuthCredential.java │ │ ├── AuthResult.java │ │ ├── EmailAuthProvider.java │ │ ├── FacebookAuthProvider.java │ │ ├── FederatedAuthProvider.java │ │ ├── FirebaseAuth.java │ │ ├── FirebaseAuthActionCodeException.java │ │ ├── FirebaseAuthEmailException.java │ │ ├── FirebaseAuthException.java │ │ ├── FirebaseAuthInvalidCredentialsException.java │ │ ├── FirebaseAuthInvalidUserException.java │ │ ├── FirebaseAuthRecentLoginRequiredException.java │ │ ├── FirebaseAuthUserCollisionException.java │ │ ├── FirebaseAuthWeakPasswordException.java │ │ ├── FirebaseAuthWebException.java │ │ ├── FirebaseUser.java │ │ ├── FirebaseUserMetadata.java │ │ ├── GetTokenResult.java │ │ ├── GithubAuthProvider.java │ │ ├── GoogleAuthProvider.java │ │ ├── OAuthProvider.java │ │ ├── PhoneAuthCredential.java │ │ ├── PhoneAuthProvider.java │ │ ├── PlayGamesAuthProvider.java │ │ ├── SignInMethodQueryResult.java │ │ ├── TwitterAuthProvider.java │ │ ├── UserInfo.java │ │ └── UserProfileChangeRequest.java └── tests │ ├── CMakeLists.txt │ ├── auth_test.cc │ ├── credential_test.cc │ ├── desktop │ ├── auth_desktop_test.cc │ ├── fakes.cc │ ├── fakes.h │ ├── rpcs │ │ ├── auth_request_heartbeat_test.cc │ │ ├── create_auth_uri_test.cc │ │ ├── delete_account_test.cc │ │ ├── get_account_info_test.cc │ │ ├── get_oob_confirmation_code_test.cc │ │ ├── reset_password_test.cc │ │ ├── secure_token_test.cc │ │ ├── set_account_info_test.cc │ │ ├── sign_up_new_user_test.cc │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── verify_assertion_test.cc │ │ ├── verify_custom_token_test.cc │ │ └── verify_password_test.cc │ ├── test_utils.cc │ ├── test_utils.h │ └── user_desktop_test.cc │ └── user_test.cc ├── binary_to_array.py ├── binary_to_array_test.py ├── cmake ├── CTestCustom.cmake ├── FindASANDylib.cmake ├── binary_to_array.cmake ├── cpp_pack.cmake ├── external │ ├── CMakeLists.txt │ ├── boringssl.cmake │ ├── curl.cmake │ ├── firebase_ios_sdk.cmake │ ├── firestore.cmake │ ├── firestore.patch.txt │ ├── flatbuffers.cmake │ ├── googletest.cmake │ ├── leveldb.cmake │ ├── libuv.cmake │ ├── uWebSockets.cmake │ └── zlib.cmake ├── external_rules.cmake ├── firebase_cpp_gradle.cmake ├── future_lib.cmake ├── test_rules.cmake └── toolchains │ ├── apple.toolchain.cmake │ ├── ios.cmake │ ├── ios_simulator.cmake │ └── linux_32.cmake ├── cpp_sdk_version.json ├── database ├── CMakeLists.txt ├── NOTICES ├── build.gradle ├── database_resources │ └── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── readme.md │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── src │ ├── android │ │ ├── data_snapshot_android.cc │ │ ├── data_snapshot_android.h │ │ ├── database_android.cc │ │ ├── database_android.h │ │ ├── database_reference_android.cc │ │ ├── database_reference_android.h │ │ ├── disconnection_android.cc │ │ ├── disconnection_android.h │ │ ├── mutable_data_android.cc │ │ ├── mutable_data_android.h │ │ ├── query_android.cc │ │ ├── query_android.h │ │ ├── util_android.cc │ │ └── util_android.h │ ├── common │ │ ├── cleanup.h │ │ ├── common.cc │ │ ├── data_snapshot.cc │ │ ├── database.cc │ │ ├── database_reference.cc │ │ ├── database_reference.h │ │ ├── disconnection.cc │ │ ├── listener.cc │ │ ├── listener.h │ │ ├── mutable_data.cc │ │ ├── query.cc │ │ ├── query.h │ │ └── query_spec.h │ ├── desktop │ │ ├── connection │ │ │ ├── connection.cc │ │ │ ├── connection.h │ │ │ ├── host_info.cc │ │ │ ├── host_info.h │ │ │ ├── persistent_connection.cc │ │ │ ├── persistent_connection.h │ │ │ ├── util_connection.cc │ │ │ ├── util_connection.h │ │ │ ├── web_socket_client_impl.cc │ │ │ ├── web_socket_client_impl.h │ │ │ └── web_socket_client_interface.h │ │ ├── core │ │ │ ├── cache_policy.cc │ │ │ ├── cache_policy.h │ │ │ ├── child_event_registration.cc │ │ │ ├── child_event_registration.h │ │ │ ├── compound_write.cc │ │ │ ├── compound_write.h │ │ │ ├── constants.cc │ │ │ ├── constants.h │ │ │ ├── event_registration.cc │ │ │ ├── event_registration.h │ │ │ ├── indexed_variant.cc │ │ │ ├── indexed_variant.h │ │ │ ├── info_listen_provider.cc │ │ │ ├── info_listen_provider.h │ │ │ ├── keep_synced_event_registration.cc │ │ │ ├── keep_synced_event_registration.h │ │ │ ├── listen_provider.cc │ │ │ ├── listen_provider.h │ │ │ ├── operation.cc │ │ │ ├── operation.h │ │ │ ├── repo.cc │ │ │ ├── repo.h │ │ │ ├── server_values.cc │ │ │ ├── server_values.h │ │ │ ├── sparse_snapshot_tree.cc │ │ │ ├── sparse_snapshot_tree.h │ │ │ ├── sync_point.cc │ │ │ ├── sync_point.h │ │ │ ├── sync_tree.cc │ │ │ ├── sync_tree.h │ │ │ ├── tag.h │ │ │ ├── tracked_query_manager.cc │ │ │ ├── tracked_query_manager.h │ │ │ ├── tree.h │ │ │ ├── value_event_registration.cc │ │ │ ├── value_event_registration.h │ │ │ ├── web_socket_listen_provider.cc │ │ │ ├── web_socket_listen_provider.h │ │ │ ├── write_tree.cc │ │ │ └── write_tree.h │ │ ├── data_snapshot_desktop.cc │ │ ├── data_snapshot_desktop.h │ │ ├── database_desktop.cc │ │ ├── database_desktop.h │ │ ├── database_reference_desktop.cc │ │ ├── database_reference_desktop.h │ │ ├── disconnection_desktop.cc │ │ ├── disconnection_desktop.h │ │ ├── mutable_data_desktop.cc │ │ ├── mutable_data_desktop.h │ │ ├── persistence │ │ │ ├── flatbuffer_conversions.cc │ │ │ ├── flatbuffer_conversions.h │ │ │ ├── in_memory_persistence_storage_engine.cc │ │ │ ├── in_memory_persistence_storage_engine.h │ │ │ ├── level_db_persistence_storage_engine.cc │ │ │ ├── level_db_persistence_storage_engine.h │ │ │ ├── noop_persistence_manager.cc │ │ │ ├── noop_persistence_manager.h │ │ │ ├── persistence_manager.cc │ │ │ ├── persistence_manager.h │ │ │ ├── persistence_manager_interface.h │ │ │ ├── persistence_storage_engine.h │ │ │ ├── prune_forest.cc │ │ │ ├── prune_forest.h │ │ │ └── schemas │ │ │ │ ├── persisted_compound_write.fbs │ │ │ │ ├── persisted_query_params.fbs │ │ │ │ ├── persisted_query_spec.fbs │ │ │ │ ├── persisted_tracked_query.fbs │ │ │ │ └── persisted_user_write_record.fbs │ │ ├── push_child_name_generator.cc │ │ ├── push_child_name_generator.h │ │ ├── query_desktop.cc │ │ ├── query_desktop.h │ │ ├── query_params_comparator.cc │ │ ├── query_params_comparator.h │ │ ├── transaction_data.cc │ │ ├── transaction_data.h │ │ ├── util_desktop.cc │ │ ├── util_desktop.h │ │ └── view │ │ │ ├── change.cc │ │ │ ├── change.h │ │ │ ├── child_change_accumulator.cc │ │ │ ├── child_change_accumulator.h │ │ │ ├── event.h │ │ │ ├── event_generator.cc │ │ │ ├── event_generator.h │ │ │ ├── event_type.h │ │ │ ├── indexed_filter.cc │ │ │ ├── indexed_filter.h │ │ │ ├── limited_filter.cc │ │ │ ├── limited_filter.h │ │ │ ├── ranged_filter.cc │ │ │ ├── ranged_filter.h │ │ │ ├── variant_filter.h │ │ │ ├── view.cc │ │ │ ├── view.h │ │ │ ├── view_cache.h │ │ │ ├── view_processor.cc │ │ │ └── view_processor.h │ ├── include │ │ └── firebase │ │ │ ├── database.h │ │ │ └── database │ │ │ ├── common.h │ │ │ ├── data_snapshot.h │ │ │ ├── database_reference.h │ │ │ ├── disconnection.h │ │ │ ├── listener.h │ │ │ ├── mutable_data.h │ │ │ ├── query.h │ │ │ └── transaction.h │ └── ios │ │ ├── .clang-format │ │ ├── completion_block_ios.h │ │ ├── completion_block_ios.mm │ │ ├── data_snapshot_ios.h │ │ ├── data_snapshot_ios.mm │ │ ├── database_ios.h │ │ ├── database_ios.mm │ │ ├── database_reference_ios.h │ │ ├── database_reference_ios.mm │ │ ├── disconnection_ios.h │ │ ├── disconnection_ios.mm │ │ ├── mutable_data_ios.h │ │ ├── mutable_data_ios.mm │ │ ├── query_ios.h │ │ ├── query_ios.mm │ │ ├── util_ios.h │ │ ├── util_ios.mm │ │ └── util_ios_test.mm ├── src_java │ └── com │ │ └── google │ │ └── firebase │ │ └── database │ │ └── internal │ │ └── cpp │ │ ├── CppChildEventListener.java │ │ ├── CppEventListener.java │ │ ├── CppTransactionHandler.java │ │ └── CppValueEventListener.java └── tests │ ├── CMakeLists.txt │ ├── common │ └── database_reference_test.cc │ └── desktop │ ├── connection │ ├── connection_test.cc │ └── web_socket_client_impl_test.cc │ ├── core │ ├── cache_policy_test.cc │ ├── compound_write_test.cc │ ├── event_registration_test.cc │ ├── indexed_variant_test.cc │ ├── operation_test.cc │ ├── server_values_test.cc │ ├── sparse_snapshot_tree_test.cc │ ├── sync_point_spec.fbs │ ├── sync_point_spec.json │ ├── sync_point_spec_test.cc │ ├── sync_point_test.cc │ ├── sync_tree_test.cc │ ├── tracked_query_manager_test.cc │ ├── tree_test.cc │ └── write_tree_test.cc │ ├── mutable_data_desktop_test.cc │ ├── persistence │ ├── flatbuffer_conversions_test.cc │ ├── in_memory_persistence_storage_engine_test.cc │ ├── level_db_persistence_storage_engine_test.cc │ ├── noop_persistence_manager_test.cc │ ├── persistence_manager_test.cc │ └── prune_forest_test.cc │ ├── push_child_name_generator_test.cc │ ├── test │ ├── matchers.h │ ├── matchers_test.cc │ ├── mock_cache_policy.h │ ├── mock_listen_provider.h │ ├── mock_listener.h │ ├── mock_persistence_manager.h │ ├── mock_persistence_storage_engine.h │ ├── mock_tracked_query_manager.h │ └── mock_write_tree.h │ ├── util_desktop_test.cc │ └── view │ ├── change_test.cc │ ├── child_change_accumulator_test.cc │ ├── event_generator_test.cc │ ├── indexed_filter_test.cc │ ├── limited_filter_test.cc │ ├── ranged_filter_test.cc │ ├── view_cache_test.cc │ ├── view_processor_test.cc │ └── view_test.cc ├── docs └── Doxyfile ├── dynamic_links ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.entitlements │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── samples │ └── src │ │ └── doc_samples.cc └── src │ ├── common.cc │ ├── common.h │ ├── dynamic_links_android.cc │ ├── dynamic_links_ios.mm │ ├── dynamic_links_stub.cc │ ├── include │ └── firebase │ │ ├── dynamic_links.h │ │ └── dynamic_links │ │ └── components.h │ └── listener.cc ├── external ├── pip_requirements.txt └── vcpkg_custom_data │ ├── response_files │ ├── arm64-osx.txt │ ├── openssl │ │ ├── x64-linux.txt │ │ ├── x64-osx.txt │ │ ├── x64-windows-static-md.txt │ │ ├── x64-windows-static.txt │ │ ├── x86-linux.txt │ │ ├── x86-windows-static-md.txt │ │ └── x86-windows-static.txt │ ├── x64-linux.txt │ ├── x64-osx.txt │ ├── x64-windows-static-md.txt │ ├── x64-windows-static.txt │ ├── x86-linux.txt │ ├── x86-windows-static-md.txt │ └── x86-windows-static.txt │ ├── toolchains │ ├── linux_32.cmake │ └── macos_arm64.cmake │ └── triplets │ ├── arm64-osx.cmake │ ├── x64-windows-static-md.cmake │ ├── x86-linux.cmake │ ├── x86-windows-static-md.cmake │ └── x86-windows-static.cmake ├── firestore ├── .clang-format ├── AndroidManifest.xml.tmpl ├── AndroidTest.java.tmpl ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CPPLINT.cfg ├── Info.plist ├── architecture.png ├── build.gradle ├── edit_ios_scheme_firestore_emulator.png ├── firestore_resources │ ├── AndroidManifest.xml │ └── build.gradle ├── generate_android_test.py ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── integration_test_emulator.sh ├── integration_test_internal │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── abseil-cpp.cmake │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── prepare_xcworkspace.sh │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ ├── aggregate_count_test.cc │ │ ├── aggregate_query_snapshot_test.cc │ │ ├── aggregate_query_test.cc │ │ ├── android │ │ ├── arena_ref_android_test.cc │ │ ├── cancellation_token_source.cc │ │ ├── cancellation_token_source.h │ │ ├── field_path_portable_test.cc │ │ ├── firestore_integration_test_android.cc │ │ ├── firestore_integration_test_android.h │ │ ├── firestore_integration_test_android_test.cc │ │ ├── geo_point_android_test.cc │ │ ├── jni_runnable_android_test.cc │ │ ├── promise_android_test.cc │ │ ├── promise_factory_android_test.cc │ │ ├── settings_android_test.cc │ │ ├── snapshot_metadata_android_test.cc │ │ ├── task_completion_source.cc │ │ ├── task_completion_source.h │ │ ├── timestamp_android_test.cc │ │ ├── transaction_options_android_test.cc │ │ ├── util_autoid.cc │ │ └── util_autoid.h │ │ ├── array_transform_test.cc │ │ ├── bundle_test.cc │ │ ├── cleanup_test.cc │ │ ├── collection_reference_test.cc │ │ ├── cursor_test.cc │ │ ├── document_change_test.cc │ │ ├── document_reference_test.cc │ │ ├── document_snapshot_test.cc │ │ ├── field_value_test.cc │ │ ├── fields_test.cc │ │ ├── filter_test.cc │ │ ├── firestore_integration_test.cc │ │ ├── firestore_integration_test.h │ │ ├── firestore_test.cc │ │ ├── includes_test.cc │ │ ├── integration_test.cc │ │ ├── jni │ │ ├── declaration_test.cc │ │ ├── env_test.cc │ │ ├── object_test.cc │ │ ├── ownership_test.cc │ │ ├── task_test.cc │ │ └── traits_test.cc │ │ ├── leveldb_snappy_test.cc │ │ ├── listener_registration_test.cc │ │ ├── numeric_transforms_test.cc │ │ ├── query_network_test.cc │ │ ├── query_snapshot_test.cc │ │ ├── query_test.cc │ │ ├── sanity_test.cc │ │ ├── server_timestamp_test.cc │ │ ├── set_options_test.cc │ │ ├── settings_test.cc │ │ ├── smoke_test.cc │ │ ├── source_test.cc │ │ ├── transaction_extra_test.cc │ │ ├── transaction_options_test.cc │ │ ├── transaction_test.cc │ │ ├── type_test.cc │ │ ├── util │ │ ├── bundle_builder.cc │ │ ├── bundle_builder.h │ │ ├── event_accumulator.h │ │ ├── future_test_util.cc │ │ ├── future_test_util.h │ │ ├── integration_test_util.cc │ │ ├── locate_emulator.cc │ │ └── locate_emulator.h │ │ ├── validation_test.cc │ │ └── write_batch_test.cc ├── src │ ├── android │ │ ├── aggregate_query_android.cc │ │ ├── aggregate_query_android.h │ │ ├── aggregate_query_snapshot_android.cc │ │ ├── aggregate_query_snapshot_android.h │ │ ├── aggregate_source_android.cc │ │ ├── aggregate_source_android.h │ │ ├── blob_android.cc │ │ ├── blob_android.h │ │ ├── collection_reference_android.cc │ │ ├── collection_reference_android.h │ │ ├── converter_android.h │ │ ├── direction_android.cc │ │ ├── direction_android.h │ │ ├── document_change_android.cc │ │ ├── document_change_android.h │ │ ├── document_change_type_android.cc │ │ ├── document_change_type_android.h │ │ ├── document_reference_android.cc │ │ ├── document_reference_android.h │ │ ├── document_snapshot_android.cc │ │ ├── document_snapshot_android.h │ │ ├── event_listener_android.cc │ │ ├── event_listener_android.h │ │ ├── exception_android.cc │ │ ├── exception_android.h │ │ ├── field_path_android.cc │ │ ├── field_path_android.h │ │ ├── field_path_portable.cc │ │ ├── field_path_portable.h │ │ ├── field_value_android.cc │ │ ├── field_value_android.h │ │ ├── filter_android.cc │ │ ├── filter_android.h │ │ ├── firestore_android.cc │ │ ├── firestore_android.h │ │ ├── firestore_exceptions_android.h │ │ ├── geo_point_android.cc │ │ ├── geo_point_android.h │ │ ├── geo_point_portable.cc │ │ ├── jni_runnable_android.cc │ │ ├── jni_runnable_android.h │ │ ├── lambda_event_listener.h │ │ ├── lambda_transaction_function.h │ │ ├── listener_registration_android.cc │ │ ├── listener_registration_android.h │ │ ├── load_bundle_task_android.cc │ │ ├── load_bundle_task_android.h │ │ ├── load_bundle_task_progress_android.cc │ │ ├── load_bundle_task_progress_android.h │ │ ├── metadata_changes_android.cc │ │ ├── metadata_changes_android.h │ │ ├── promise_android.h │ │ ├── promise_factory_android.h │ │ ├── query_android.cc │ │ ├── query_android.h │ │ ├── query_snapshot_android.cc │ │ ├── query_snapshot_android.h │ │ ├── server_timestamp_behavior_android.cc │ │ ├── server_timestamp_behavior_android.h │ │ ├── set_options_android.cc │ │ ├── set_options_android.h │ │ ├── settings_android.cc │ │ ├── settings_android.h │ │ ├── snapshot_metadata_android.cc │ │ ├── snapshot_metadata_android.h │ │ ├── source_android.cc │ │ ├── source_android.h │ │ ├── timestamp_android.cc │ │ ├── timestamp_android.h │ │ ├── timestamp_portable.cc │ │ ├── transaction_android.cc │ │ ├── transaction_android.h │ │ ├── transaction_options_android.cc │ │ ├── transaction_options_android.h │ │ ├── transaction_options_builder_android.cc │ │ ├── transaction_options_builder_android.h │ │ ├── util_android.cc │ │ ├── util_android.h │ │ ├── wrapper.cc │ │ ├── wrapper.h │ │ ├── write_batch_android.cc │ │ └── write_batch_android.h │ ├── common │ │ ├── aggregate_query.cc │ │ ├── aggregate_query_snapshot.cc │ │ ├── cleanup.h │ │ ├── collection_reference.cc │ │ ├── compiler_info.cc │ │ ├── compiler_info.h │ │ ├── document_change.cc │ │ ├── document_reference.cc │ │ ├── document_snapshot.cc │ │ ├── event_listener.h │ │ ├── exception_common.cc │ │ ├── exception_common.h │ │ ├── field_path.cc │ │ ├── field_value.cc │ │ ├── filter.cc │ │ ├── firestore.cc │ │ ├── firestore_exceptions_common.h │ │ ├── futures.cc │ │ ├── futures.h │ │ ├── hard_assert_common.cc │ │ ├── hard_assert_common.h │ │ ├── listener_registration.cc │ │ ├── load_bundle_task_progress.cc │ │ ├── macros.h │ │ ├── query.cc │ │ ├── query_snapshot.cc │ │ ├── set_options.cc │ │ ├── settings.cc │ │ ├── settings_apple.mm │ │ ├── snapshot_metadata.cc │ │ ├── to_string.cc │ │ ├── to_string.h │ │ ├── transaction.cc │ │ ├── transaction_function.h │ │ ├── transaction_options.cc │ │ ├── type_mapping.h │ │ ├── util.cc │ │ ├── util.h │ │ ├── wrapper_assertions.cc │ │ ├── wrapper_assertions.h │ │ └── write_batch.cc │ ├── include │ │ └── firebase │ │ │ ├── firestore.h │ │ │ └── firestore │ │ │ ├── aggregate_query.h │ │ │ ├── aggregate_query_snapshot.h │ │ │ ├── aggregate_source.h │ │ │ ├── collection_reference.h │ │ │ ├── document_change.h │ │ │ ├── document_reference.h │ │ │ ├── document_snapshot.h │ │ │ ├── field_path.h │ │ │ ├── field_value.h │ │ │ ├── filter.h │ │ │ ├── listener_registration.h │ │ │ ├── load_bundle_task_progress.h │ │ │ ├── map_field_value.h │ │ │ ├── metadata_changes.h │ │ │ ├── query.h │ │ │ ├── query_snapshot.h │ │ │ ├── set_options.h │ │ │ ├── settings.h │ │ │ ├── snapshot_metadata.h │ │ │ ├── source.h │ │ │ ├── transaction.h │ │ │ ├── transaction_options.h │ │ │ └── write_batch.h │ ├── jni │ │ ├── arena_ref.cc │ │ ├── arena_ref.h │ │ ├── array.h │ │ ├── array_list.cc │ │ ├── array_list.h │ │ ├── boolean.cc │ │ ├── boolean.h │ │ ├── call_traits.h │ │ ├── class.cc │ │ ├── class.h │ │ ├── collection.cc │ │ ├── collection.h │ │ ├── compare.h │ │ ├── declaration.h │ │ ├── double.cc │ │ ├── double.h │ │ ├── env.cc │ │ ├── env.h │ │ ├── hash_map.cc │ │ ├── hash_map.h │ │ ├── integer.cc │ │ ├── integer.h │ │ ├── iterator.cc │ │ ├── iterator.h │ │ ├── jni.cc │ │ ├── jni.h │ │ ├── jni_fwd.h │ │ ├── list.cc │ │ ├── list.h │ │ ├── loader.cc │ │ ├── loader.h │ │ ├── long.cc │ │ ├── long.h │ │ ├── map.cc │ │ ├── map.h │ │ ├── object.cc │ │ ├── object.h │ │ ├── ownership.h │ │ ├── set.h │ │ ├── string.cc │ │ ├── string.h │ │ ├── task.cc │ │ ├── task.h │ │ ├── throwable.cc │ │ ├── throwable.h │ │ └── traits.h │ └── main │ │ ├── aggregate_query_main.cc │ │ ├── aggregate_query_main.h │ │ ├── aggregate_query_snapshot_main.cc │ │ ├── aggregate_query_snapshot_main.h │ │ ├── app_check_credentials_provider_desktop.cc │ │ ├── app_check_credentials_provider_desktop.h │ │ ├── collection_reference_main.cc │ │ ├── collection_reference_main.h │ │ ├── composite_filter_main.cc │ │ ├── composite_filter_main.h │ │ ├── converter_main.h │ │ ├── create_app_check_credentials_provider.h │ │ ├── create_app_check_credentials_provider_desktop.cc │ │ ├── create_app_check_credentials_provider_ios.mm │ │ ├── create_credentials_provider.h │ │ ├── create_credentials_provider_desktop.cc │ │ ├── create_credentials_provider_ios.mm │ │ ├── create_firebase_metadata_provider.h │ │ ├── create_firebase_metadata_provider_desktop.cc │ │ ├── create_firebase_metadata_provider_ios.mm │ │ ├── credentials_provider_desktop.cc │ │ ├── credentials_provider_desktop.h │ │ ├── document_change_main.cc │ │ ├── document_change_main.h │ │ ├── document_reference_main.cc │ │ ├── document_reference_main.h │ │ ├── document_snapshot_main.cc │ │ ├── document_snapshot_main.h │ │ ├── field_value_main.cc │ │ ├── field_value_main.h │ │ ├── filter_main.cc │ │ ├── filter_main.h │ │ ├── firebase_metadata_provider_desktop.cc │ │ ├── firebase_metadata_provider_desktop.h │ │ ├── firestore_main.cc │ │ ├── firestore_main.h │ │ ├── listener_main.h │ │ ├── listener_registration_main.cc │ │ ├── listener_registration_main.h │ │ ├── promise_factory_main.h │ │ ├── promise_main.h │ │ ├── query_main.cc │ │ ├── query_main.h │ │ ├── query_snapshot_main.cc │ │ ├── query_snapshot_main.h │ │ ├── set_options_main.h │ │ ├── source_main.h │ │ ├── transaction_main.cc │ │ ├── transaction_main.h │ │ ├── unary_filter_main.cc │ │ ├── unary_filter_main.h │ │ ├── user_data_converter_main.cc │ │ ├── user_data_converter_main.h │ │ ├── util_main.h │ │ ├── write_batch_main.cc │ │ └── write_batch_main.h └── src_java │ └── com │ └── google │ └── firebase │ └── firestore │ └── internal │ └── cpp │ ├── CppEventListener.java │ ├── DocumentEventListener.java │ ├── Dummy.java │ ├── FirestoreTasks.java │ ├── JniRunnable.java │ ├── LoadBundleProgressListener.java │ ├── ObjectArena.java │ ├── QueryEventListener.java │ ├── SilentRejectionSingleThreadExecutor.java │ ├── TransactionFunction.java │ └── VoidEventListener.java ├── functions ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── samples │ └── src │ │ └── doc_samples.cc └── src │ ├── android │ ├── callable_reference_android.cc │ ├── callable_reference_android.h │ ├── functions_android.cc │ └── functions_android.h │ ├── common │ ├── callable_reference.cc │ ├── callable_result.cc │ ├── common.cc │ └── functions.cc │ ├── desktop │ ├── callable_reference_desktop.cc │ ├── callable_reference_desktop.h │ ├── functions_desktop.cc │ ├── functions_desktop.h │ ├── serialization.cc │ └── serialization.h │ ├── include │ └── firebase │ │ ├── functions.h │ │ └── functions │ │ ├── callable_reference.h │ │ ├── callable_result.h │ │ └── common.h │ └── ios │ ├── .clang-format │ ├── callable_reference_ios.h │ ├── callable_reference_ios.mm │ ├── functions_ios.h │ └── functions_ios.mm ├── generate_xml_from_google_services_json.exe ├── generate_xml_from_google_services_json.py ├── gma ├── CMakeLists.txt ├── build.gradle ├── gma_additional.pro ├── gma_resources │ ├── AndroidManifest.xml │ └── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── empty.swift │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── src │ ├── android │ │ ├── ad_error_android.cc │ │ ├── ad_error_android.h │ │ ├── ad_request_converter.cc │ │ ├── ad_request_converter.h │ │ ├── ad_view_internal_android.cc │ │ ├── ad_view_internal_android.h │ │ ├── adapter_response_info_android.cc │ │ ├── adapter_response_info_android.h │ │ ├── gma_android.cc │ │ ├── gma_android.h │ │ ├── interstitial_ad_internal_android.cc │ │ ├── interstitial_ad_internal_android.h │ │ ├── native_ad_image_android.cc │ │ ├── native_ad_image_android.h │ │ ├── native_ad_internal_android.cc │ │ ├── native_ad_internal_android.h │ │ ├── query_info_internal_android.cc │ │ ├── query_info_internal_android.h │ │ ├── response_info_android.cc │ │ ├── response_info_android.h │ │ ├── rewarded_ad_internal_android.cc │ │ ├── rewarded_ad_internal_android.h │ │ └── ump │ │ │ ├── consent_info_internal_android.cc │ │ │ └── consent_info_internal_android.h │ ├── common │ │ ├── ad_error_internal.h │ │ ├── ad_view.cc │ │ ├── ad_view_internal.cc │ │ ├── ad_view_internal.h │ │ ├── full_screen_ad_event_listener.cc │ │ ├── full_screen_ad_event_listener.h │ │ ├── gma_common.cc │ │ ├── gma_common.h │ │ ├── interstitial_ad.cc │ │ ├── interstitial_ad_internal.cc │ │ ├── interstitial_ad_internal.h │ │ ├── native_ad.cc │ │ ├── native_ad_image_internal.h │ │ ├── native_ad_internal.cc │ │ ├── native_ad_internal.h │ │ ├── query_info.cc │ │ ├── query_info_internal.cc │ │ ├── query_info_internal.h │ │ ├── rewarded_ad.cc │ │ ├── rewarded_ad_internal.cc │ │ ├── rewarded_ad_internal.h │ │ └── ump │ │ │ ├── consent_info.cc │ │ │ ├── consent_info_internal.cc │ │ │ └── consent_info_internal.h │ ├── include │ │ └── firebase │ │ │ ├── gma.h │ │ │ └── gma │ │ │ ├── ad_view.h │ │ │ ├── internal │ │ │ ├── README.md │ │ │ ├── native_ad.h │ │ │ └── query_info.h │ │ │ ├── interstitial_ad.h │ │ │ ├── rewarded_ad.h │ │ │ ├── types.h │ │ │ ├── ump.h │ │ │ └── ump │ │ │ ├── consent_info.h │ │ │ └── types.h │ ├── ios │ │ ├── .clang-format │ │ ├── FADAdSize.h │ │ ├── FADAdSize.mm │ │ ├── FADAdView.h │ │ ├── FADAdView.mm │ │ ├── FADInterstitialDelegate.h │ │ ├── FADInterstitialDelegate.mm │ │ ├── FADNativeDelegate.h │ │ ├── FADNativeDelegate.mm │ │ ├── FADRequest.h │ │ ├── FADRequest.mm │ │ ├── FADRewardedAdDelegate.h │ │ ├── FADRewardedAdDelegate.mm │ │ ├── GADNativeAdCpp.h │ │ ├── ad_error_ios.h │ │ ├── ad_error_ios.mm │ │ ├── ad_response_info_ios.h │ │ ├── ad_view_internal_ios.h │ │ ├── ad_view_internal_ios.mm │ │ ├── adapter_response_info_ios.h │ │ ├── adapter_response_info_ios.mm │ │ ├── gma_ios.h │ │ ├── gma_ios.mm │ │ ├── interstitial_ad_internal_ios.h │ │ ├── interstitial_ad_internal_ios.mm │ │ ├── native_ad_image_ios.h │ │ ├── native_ad_image_ios.mm │ │ ├── native_ad_internal_ios.h │ │ ├── native_ad_internal_ios.mm │ │ ├── query_info_internal_ios.h │ │ ├── query_info_internal_ios.mm │ │ ├── response_info_ios.h │ │ ├── response_info_ios.mm │ │ ├── rewarded_ad_internal_ios.h │ │ ├── rewarded_ad_internal_ios.mm │ │ └── ump │ │ │ ├── consent_info_internal_ios.h │ │ │ └── consent_info_internal_ios.mm │ └── stub │ │ ├── ad_error_stub.cc │ │ ├── ad_view_internal_stub.h │ │ ├── adapter_response_info_stub.cc │ │ ├── gma_stub.cc │ │ ├── interstitial_ad_internal_stub.h │ │ ├── native_ad_image_stub.cc │ │ ├── native_ad_internal_stub.h │ │ ├── query_info_internal_stub.h │ │ ├── response_info_stub.cc │ │ ├── rewarded_ad_internal_stub.h │ │ └── ump │ │ ├── consent_info_internal_stub.cc │ │ └── consent_info_internal_stub.h └── src_java │ └── com │ └── google │ └── firebase │ └── gma │ └── internal │ └── cpp │ ├── AdInspectorHelper.java │ ├── AdRequestHelper.java │ ├── AdViewHelper.java │ ├── ConsentInfoHelper.java │ ├── ConstantsHelper.java │ ├── DownloadHelper.java │ ├── GmaInitializationHelper.java │ ├── InterstitialAdHelper.java │ ├── NativeAdHelper.java │ ├── QueryInfoHelper.java │ └── RewardedAdHelper.java ├── gms_package_versions_integrate.sh ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── installations ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── src │ ├── android │ │ ├── installations_android.cc │ │ └── installations_android.h │ ├── common.h │ ├── include │ │ └── firebase │ │ │ └── installations.h │ ├── installations.cc │ ├── installations_internal.h │ ├── ios │ │ ├── .clang-format │ │ ├── installations_ios.h │ │ └── installations_ios.mm │ └── stub │ │ ├── installations_stub.cc │ │ └── installations_stub.h ├── src_ios │ └── fake │ │ ├── .clang-format │ │ ├── FIRInstallations.h │ │ ├── FIRInstallations.mm │ │ ├── FIRInstallationsAuthTokenResult.h │ │ └── FIRInstallationsAuthTokenResult.mm ├── src_java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ └── installations │ │ ├── FirebaseInstallations.java │ │ └── InstallationTokenResult.java └── tests │ ├── CMakeLists.txt │ └── installations_test.cc ├── ios_pod ├── CMakeLists.txt ├── Podfile ├── empty.cc ├── empty_CMakeLists.txt ├── readme.txt └── swift_headers │ ├── FirebaseAnalytics-Swift.h │ ├── FirebaseAnalyticsSwift-Swift.h │ ├── FirebaseAuth-Swift.h │ ├── FirebaseCoreInternal-Swift.h │ ├── FirebaseDatabase-Swift.h │ ├── FirebaseDatabaseSwift-Swift.h │ ├── FirebaseFirestore-Swift.h │ ├── FirebaseFirestoreSwift-Swift.h │ ├── FirebaseFunctions-Swift.h │ ├── FirebaseInAppMessaging-Swift.h │ ├── FirebaseInAppMessagingSwift-Swift.h │ ├── FirebaseMLModelDownloader-Swift.h │ ├── FirebaseRemoteConfig-Swift.h │ ├── FirebaseRemoteConfigSwift-Swift.h │ ├── FirebaseSessions-Swift.h │ ├── FirebaseSharedSwift-Swift.h │ ├── FirebaseStorage-Swift.h │ ├── Promises-Swift.h │ └── SwiftProtobuf-Swift.h ├── merge_libraries_test_file.cc ├── messaging ├── AndroidManifest.xml ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── functions │ │ ├── firebase.json │ │ └── functions │ │ │ ├── index.js │ │ │ └── package.json │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.entitlements │ ├── integration_test.xcodeproj │ │ └── project.pbxproj │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── readme.md │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ ├── android │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── firebase │ │ │ └── example │ │ │ └── SampleNativeActivity.java │ │ └── integration_test.cc ├── messaging_additional.pro ├── messaging_java │ └── build.gradle ├── samples │ ├── AndroidManifest.xml │ └── src │ │ └── java │ │ └── com │ │ └── google │ │ └── firebase │ │ └── messaging │ │ └── cpp │ │ └── samples │ │ ├── MyActivity.java │ │ └── MyListenerService.java ├── src │ ├── android │ │ ├── cpp │ │ │ ├── message_reader.cc │ │ │ ├── message_reader.h │ │ │ ├── messaging.cc │ │ │ └── messaging_internal.h │ │ ├── java │ │ │ ├── LibraryManifest.xml │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── firebase │ │ │ │ └── messaging │ │ │ │ ├── JobIds.java │ │ │ │ ├── MessageForwardingService.java │ │ │ │ └── cpp │ │ │ │ ├── DebugLogging.java │ │ │ │ ├── ListenerService.java │ │ │ │ ├── MessageWriter.java │ │ │ │ └── RegistrationIntentService.java │ │ ├── javatests │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── firebase │ │ │ │ └── messaging │ │ │ │ ├── MessageForwardingServiceTest.java │ │ │ │ ├── RemoteMessageUtil.java │ │ │ │ └── cpp │ │ │ │ ├── ListenerServiceTest.java │ │ │ │ └── MessageWriterTest.java │ │ └── schemas │ │ │ └── messaging.fbs │ ├── common.cc │ ├── common.h │ ├── include │ │ └── firebase │ │ │ └── messaging.h │ ├── ios │ │ ├── .clang-format │ │ ├── fake │ │ │ ├── FIRMessaging.h │ │ │ └── FIRMessaging.mm │ │ └── messaging.mm │ ├── listener.cc │ └── stub │ │ └── messaging.cc ├── src_java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ └── messaging │ │ ├── FirebaseMessaging.java │ │ ├── RemoteMessage.java │ │ └── cpp │ │ └── RegistrationIntentService.java └── tests │ ├── CMakeLists.txt │ ├── android │ └── cpp │ │ ├── message_reader_test.cc │ │ └── messaging_test_util.cc │ ├── ios │ └── messaging_test_util.mm │ ├── messaging_test.cc │ └── messaging_test_util.h ├── performance ├── example_usage.cc ├── src │ ├── android │ │ ├── firebase_performance.cc │ │ ├── http_metric.cc │ │ ├── performance_android_internal.h │ │ └── trace.cc │ ├── http_metric_test.cc │ ├── include │ │ └── firebase │ │ │ ├── performance.h │ │ │ └── performance │ │ │ ├── http_metric.h │ │ │ └── trace.h │ ├── ios │ │ ├── .clang-format │ │ ├── firebase_performance.mm │ │ ├── http_metric.mm │ │ └── trace.mm │ ├── performance_common.cc │ ├── performance_common.h │ ├── performance_test.cc │ └── trace_test.cc ├── src_ios │ └── fake │ │ ├── .clang-format │ │ ├── FIRHTTPMetric.h │ │ ├── FIRHTTPMetric.mm │ │ ├── FIRPerformance.h │ │ ├── FIRPerformance.mm │ │ ├── FIRPerformanceAttributable.h │ │ ├── FIRTrace.h │ │ └── FIRTrace.mm ├── src_java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ └── perf │ │ ├── FirebasePerformance.java │ │ ├── FirebasePerformanceAttributable.java │ │ └── metrics │ │ ├── HttpMetric.java │ │ └── Trace.java └── stubs │ ├── http_metric_stub.cc │ ├── performance_stub.cc │ └── trace_stub.cc ├── pull_request_template.md ├── readme_for_generate_xml_from_google_services_json_exe.txt ├── release_build_files ├── Android │ └── firebase_dependencies.gradle ├── CMakeLists.txt ├── NOTICES └── readme.md ├── remote_config ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── remote_config_resources │ └── build.gradle ├── src │ ├── android │ │ ├── remote_config_android.cc │ │ └── remote_config_android.h │ ├── cleanup.h │ ├── common.cc │ ├── common.h │ ├── config_update_listener_registration.cc │ ├── config_update_listener_registration_internal.cc │ ├── config_update_listener_registration_internal.h │ ├── desktop │ │ ├── config_data.cc │ │ ├── config_data.h │ │ ├── file_manager.cc │ │ ├── file_manager.h │ │ ├── metadata.cc │ │ ├── metadata.h │ │ ├── notification_channel.cc │ │ ├── notification_channel.h │ │ ├── remote_config_desktop.cc │ │ ├── remote_config_desktop.h │ │ ├── remote_config_request.cc │ │ ├── remote_config_request.h │ │ ├── remote_config_response.cc │ │ ├── remote_config_response.h │ │ ├── request.fbs │ │ ├── response.fbs │ │ ├── rest.cc │ │ ├── rest.h │ │ └── rest_fake.cc │ ├── include │ │ └── firebase │ │ │ ├── remote_config.h │ │ │ └── remote_config │ │ │ └── config_update_listener_registration.h │ ├── ios │ │ ├── .clang-format │ │ ├── remote_config_ios.h │ │ └── remote_config_ios.mm │ └── remote_config.cc ├── src_java │ ├── com │ │ └── google │ │ │ └── firebase │ │ │ └── remoteconfig │ │ │ └── internal │ │ │ └── cpp │ │ │ └── JniConfigUpdateListener.java │ └── fake │ │ └── com │ │ └── google │ │ └── firebase │ │ └── remoteconfig │ │ ├── FirebaseRemoteConfig.java │ │ ├── FirebaseRemoteConfigFetchThrottledException.java │ │ ├── FirebaseRemoteConfigInfo.java │ │ ├── FirebaseRemoteConfigSettings.java │ │ └── FirebaseRemoteConfigValue.java └── tests │ ├── CMakeLists.txt │ ├── desktop │ ├── config_data_test.cc │ ├── file_manager_test.cc │ ├── metadata_test.cc │ ├── notification_channel_test.cc │ ├── remote_config_desktop_test.cc │ └── rest_test.cc │ └── remote_config_test.cc ├── scripts ├── build_desktop_app_with_firebase.py ├── decrypt_gha_secret.sh ├── format_code.py ├── gha-encrypted │ ├── README │ ├── analytics │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── app │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── app_check │ │ ├── GoogleService-Info.plist.gpg │ │ ├── app_check_token.txt.gpg │ │ └── google-services.json.gpg │ ├── auth │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── database │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── dynamic_links │ │ ├── GoogleService-Info.plist.gpg │ │ ├── google-services.json.gpg │ │ └── uri_prefix.txt.gpg │ ├── firestore │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── functions │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── gcs_key_file.json.gpg │ ├── gma │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── installations │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── messaging │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ ├── remote_config │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg │ └── storage │ │ ├── GoogleService-Info.plist.gpg │ │ └── google-services.json.gpg ├── gha │ ├── __init__.py │ ├── build_desktop.py │ ├── build_ios_tvos.py │ ├── build_testapps.py │ ├── check_copyright.sh │ ├── create_pull_request.py │ ├── desktop_tester.py │ ├── dismiss_reviews.py │ ├── firebase_github.py │ ├── gcs_uploader.py │ ├── inspect_built_libraries.py │ ├── install_prereqs_desktop.py │ ├── install_test_workflow_prereqs.sh │ ├── integration_testing │ │ ├── __init__.py │ │ ├── build_testapps.json │ │ ├── config_reader.py │ │ ├── export.plist │ │ ├── ftl_gha_validator.py │ │ ├── gameloop_android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── firebase │ │ │ │ │ │ └── gameloop │ │ │ │ │ │ └── GameLoopUITest.kt │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── firebase │ │ │ │ │ │ └── gameloop │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── file_paths.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── gameloop_apple │ │ │ ├── gameloop.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── gameloop │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Constants.swift │ │ │ │ ├── Info.plist │ │ │ │ └── ViewController.swift │ │ │ ├── gameloopUITests │ │ │ │ ├── Info.plist │ │ │ │ └── gameloopUITests.swift │ │ │ └── gameloop_tvos │ │ │ │ └── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ ├── gcs.py │ │ ├── google-services.json │ │ ├── provisioning.py │ │ ├── test_validation.py │ │ ├── xcode_tool.rb │ │ └── xcodebuild.py │ ├── it_workflow.py │ ├── lint_commenter.py │ ├── pr_file_commenter.py │ ├── print_matrix_configuration.py │ ├── python_requirements.txt │ ├── read_ftl_test_result.py │ ├── report_build_status.py │ ├── restore_secrets.py │ ├── retry_test_failures.py │ ├── summarize_test_results.py │ ├── test_simulator.py │ ├── trigger_workflow.py │ ├── ui_testing │ │ ├── uitest_android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── google │ │ │ │ │ │ └── firebase │ │ │ │ │ │ └── uitest │ │ │ │ │ │ └── UITest.java │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── file_paths.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ └── uitest_apple │ │ │ ├── FirebaseCppUITestApp.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── FirebaseCppUITestApp │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ │ └── FirebaseCppUITestAppUITests │ │ │ ├── FirebaseCppUITestAppUITests.swift │ │ │ └── Info.plist │ ├── update_issue_comment.py │ └── utils.py ├── git │ ├── hooks │ │ └── pre-commit │ └── patches │ │ ├── boringssl │ │ └── 0001-disable-warnings.patch │ │ ├── flatbuffers │ │ └── 0001-remove-unused-var.patch │ │ ├── leveldb │ │ └── 0001-leveldb-1.23-windows-paths.patch │ │ └── uWebSockets │ │ └── 0001-fix-want-write-and-sprintf-deprecation.patch ├── merge_libraries.py ├── merge_libraries_test.py ├── merge_libraries_test.sh ├── merge_libraries_test_file.cc ├── print_allowed_namespaces.py └── update_android_ios_dependencies.py ├── settings.gradle ├── setup_integration_tests.py ├── storage ├── CMakeLists.txt ├── build.gradle ├── integration_test │ ├── AndroidManifest.xml │ ├── CMakeLists.txt │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── LibraryManifest.xml │ ├── Podfile │ ├── build.gradle │ ├── googletest.cmake │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── integration_test.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── integration_test_tvos │ │ └── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ ├── proguard.pro │ ├── readme.md │ ├── res │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ ├── settings.gradle │ └── src │ │ └── integration_test.cc ├── src │ ├── android │ │ ├── controller_android.cc │ │ ├── controller_android.h │ │ ├── metadata_android.cc │ │ ├── metadata_android.h │ │ ├── storage_android.cc │ │ ├── storage_android.h │ │ ├── storage_reference_android.cc │ │ └── storage_reference_android.h │ ├── common │ │ ├── common.cc │ │ ├── common_internal.h │ │ ├── controller.cc │ │ ├── listener.cc │ │ ├── metadata.cc │ │ ├── storage.cc │ │ ├── storage_reference.cc │ │ ├── storage_uri_parser.cc │ │ ├── storage_uri_parser.h │ │ └── storage_uri_parser_test.cc │ ├── desktop │ │ ├── controller_desktop.cc │ │ ├── controller_desktop.h │ │ ├── curl_requests.cc │ │ ├── curl_requests.h │ │ ├── listener_desktop.cc │ │ ├── listener_desktop.h │ │ ├── metadata_desktop.cc │ │ ├── metadata_desktop.h │ │ ├── rest_operation.cc │ │ ├── rest_operation.h │ │ ├── storage_desktop.cc │ │ ├── storage_desktop.h │ │ ├── storage_path.cc │ │ ├── storage_path.h │ │ ├── storage_reference_desktop.cc │ │ └── storage_reference_desktop.h │ ├── include │ │ └── firebase │ │ │ ├── storage.h │ │ │ └── storage │ │ │ ├── common.h │ │ │ ├── controller.h │ │ │ ├── listener.h │ │ │ ├── metadata.h │ │ │ └── storage_reference.h │ ├── ios │ │ ├── .clang-format │ │ ├── controller_ios.h │ │ ├── controller_ios.mm │ │ ├── listener_ios.h │ │ ├── listener_ios.mm │ │ ├── metadata_ios.h │ │ ├── metadata_ios.mm │ │ ├── storage_ios.h │ │ ├── storage_ios.mm │ │ ├── storage_reference_ios.h │ │ ├── storage_reference_ios.mm │ │ ├── util_ios.h │ │ └── util_ios.mm │ └── stub │ │ └── listener_stub.h ├── src_java │ └── com │ │ └── google │ │ └── firebase │ │ └── storage │ │ └── internal │ │ └── cpp │ │ ├── CppByteDownloader.java │ │ ├── CppByteUploader.java │ │ └── CppStorageListener.java ├── storage_resources │ └── build.gradle └── tests │ ├── CMakeLists.txt │ └── desktop │ └── storage_desktop_utils_tests.cc ├── test_android.sh ├── test_linux.sh ├── test_mac_ios.sh ├── test_mac_ios_simulator.sh ├── test_mac_x64.sh ├── test_windows_x32.bat ├── test_windows_x64.bat ├── testing ├── CMakeLists.txt ├── TickerExample.java ├── build.gradle ├── com │ └── google │ │ └── firebase │ │ └── testing │ │ └── cppsdk │ │ ├── ConfigAndroid.java │ │ ├── FakeListener.java │ │ ├── FakeReporter.java │ │ ├── TickerAndroid.java │ │ └── TickerObserver.java ├── config.cc ├── config.h ├── config_android.cc ├── config_desktop.cc ├── config_desktop.h ├── config_ios.h ├── config_ios.mm ├── config_test.cc ├── json_util.cc ├── json_util.h ├── reporter.cc ├── reporter.h ├── reporter_android.cc ├── reporter_impl.cc ├── reporter_impl.h ├── reporter_impl_fake.cc ├── reporter_impl_fake.h ├── reporter_impl_test.cc ├── reporter_test.cc ├── run_all_tests.cc ├── run_all_tests.h ├── run_all_tests.mm ├── sample_framework │ └── src │ │ ├── android │ │ ├── android_app_framework.cc │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── firebase │ │ │ └── example │ │ │ ├── LoggingUtils.java │ │ │ └── TextEntryField.java │ │ ├── app_framework.cc │ │ ├── app_framework.h │ │ ├── desktop │ │ └── desktop_app_framework.cc │ │ ├── empty.swift │ │ └── ios │ │ └── ios_app_framework.mm ├── templates │ ├── Activity.java.tmpl │ ├── ActivityManifest.xml.tmpl │ ├── InstrumentedTest.java.tmpl │ ├── JavaTest.java.tmpl │ ├── RobolectricTest.java.tmpl │ └── TestManifest.xml.tmpl ├── test_framework │ ├── download_googletest.py │ └── src │ │ ├── android │ │ ├── android_firebase_test_framework.cc │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── firebase │ │ │ └── example │ │ │ ├── SimpleHttpRequest.java │ │ │ ├── SimplePersistentStorage.java │ │ │ └── TestHelper.java │ │ ├── desktop │ │ └── desktop_firebase_test_framework.cc │ │ ├── firebase_test_framework.cc │ │ ├── firebase_test_framework.h │ │ └── ios │ │ ├── .clang-format │ │ └── ios_firebase_test_framework.mm ├── testdata_config.fbs ├── testdata_config_android.fbs ├── ticker.h ├── ticker_android.cc ├── ticker_desktop.cc ├── ticker_desktop.h ├── ticker_ios.h ├── ticker_test.cc ├── util_android.cc ├── util_android.h ├── util_android_test.cc ├── util_ios.h ├── util_ios.mm └── util_ios_test.mm ├── testlab └── src │ ├── android │ ├── testlab.cc │ ├── util.cc │ └── util.h │ ├── common │ ├── common.cc │ ├── common.h │ └── scenario_result.fbs │ ├── desktop │ ├── testlab_desktop.cc │ ├── testlab_macos.h │ └── testlab_macos.mm │ ├── include │ └── firebase │ │ └── testlab.h │ └── ios │ ├── .clang-format │ ├── custom_results.h │ ├── custom_results.mm │ └── testlab.mm ├── version.sh ├── version_header.py └── version_header_test.py /.allstar/binary_artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.allstar/binary_artifacts.yaml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /.gitallowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.gitallowed -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/build-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/build-report.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/checks_secure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/checks_secure.yml -------------------------------------------------------------------------------- /.github/workflows/cpp-packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/cpp-packaging.yml -------------------------------------------------------------------------------- /.github/workflows/desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/desktop.yml -------------------------------------------------------------------------------- /.github/workflows/integration_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/integration_tests.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/reviewer-roulette.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.github/workflows/reviewer-roulette.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android/firebase_dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/Android/firebase_dependencies.gradle -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/README.md -------------------------------------------------------------------------------- /analytics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/CMakeLists.txt -------------------------------------------------------------------------------- /analytics/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/NOTICES -------------------------------------------------------------------------------- /analytics/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/build.gradle -------------------------------------------------------------------------------- /analytics/generate_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/generate_constants.py -------------------------------------------------------------------------------- /analytics/generate_constants_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/generate_constants_lib.py -------------------------------------------------------------------------------- /analytics/generate_constants_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/generate_constants_test.py -------------------------------------------------------------------------------- /analytics/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/Info.plist -------------------------------------------------------------------------------- /analytics/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/Podfile -------------------------------------------------------------------------------- /analytics/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/build.gradle -------------------------------------------------------------------------------- /analytics/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/gradlew -------------------------------------------------------------------------------- /analytics/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/gradlew.bat -------------------------------------------------------------------------------- /analytics/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/proguard.pro -------------------------------------------------------------------------------- /analytics/integration_test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/integration_test/readme.md -------------------------------------------------------------------------------- /analytics/ios_headers/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /analytics/ios_headers/FIREventNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/ios_headers/FIREventNames.h -------------------------------------------------------------------------------- /analytics/src/analytics_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src/analytics_android.cc -------------------------------------------------------------------------------- /analytics/src/analytics_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src/analytics_common.cc -------------------------------------------------------------------------------- /analytics/src/analytics_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src/analytics_common.h -------------------------------------------------------------------------------- /analytics/src/analytics_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src/analytics_ios.mm -------------------------------------------------------------------------------- /analytics/src/analytics_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src/analytics_stub.cc -------------------------------------------------------------------------------- /analytics/src_ios/fake/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /analytics/src_ios/fake/FIRAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src_ios/fake/FIRAnalytics.h -------------------------------------------------------------------------------- /analytics/src_ios/fake/FIRAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/src_ios/fake/FIRAnalytics.mm -------------------------------------------------------------------------------- /analytics/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/tests/CMakeLists.txt -------------------------------------------------------------------------------- /analytics/tests/analytics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/analytics/tests/analytics_test.cc -------------------------------------------------------------------------------- /android_build_files/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/android_build_files/AndroidManifest.xml -------------------------------------------------------------------------------- /android_build_files/android_abis.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/android_build_files/android_abis.gradle -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/app_additional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/app_additional.pro -------------------------------------------------------------------------------- /app/app_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/app_resources/build.gradle -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google_api_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/google_api_resources/build.gradle -------------------------------------------------------------------------------- /app/google_services.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/google_services.fbs -------------------------------------------------------------------------------- /app/integration_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/CMakeLists.txt -------------------------------------------------------------------------------- /app/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/Info.plist -------------------------------------------------------------------------------- /app/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/Podfile -------------------------------------------------------------------------------- /app/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/build.gradle -------------------------------------------------------------------------------- /app/integration_test/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/googletest.cmake -------------------------------------------------------------------------------- /app/integration_test/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/gradle.properties -------------------------------------------------------------------------------- /app/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/gradlew -------------------------------------------------------------------------------- /app/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/gradlew.bat -------------------------------------------------------------------------------- /app/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/proguard.pro -------------------------------------------------------------------------------- /app/integration_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/integration_test/settings.gradle -------------------------------------------------------------------------------- /app/invites_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/invites_resources/build.gradle -------------------------------------------------------------------------------- /app/rest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/CMakeLists.txt -------------------------------------------------------------------------------- /app/rest/controller_curl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/controller_curl.cc -------------------------------------------------------------------------------- /app/rest/controller_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/controller_curl.h -------------------------------------------------------------------------------- /app/rest/controller_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/controller_interface.cc -------------------------------------------------------------------------------- /app/rest/controller_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/controller_interface.h -------------------------------------------------------------------------------- /app/rest/gzipheader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/gzipheader.cc -------------------------------------------------------------------------------- /app/rest/gzipheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/gzipheader.h -------------------------------------------------------------------------------- /app/rest/request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request.cc -------------------------------------------------------------------------------- /app/rest/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request.h -------------------------------------------------------------------------------- /app/rest/request_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_binary.h -------------------------------------------------------------------------------- /app/rest/request_binary_gzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_binary_gzip.cc -------------------------------------------------------------------------------- /app/rest/request_binary_gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_binary_gzip.h -------------------------------------------------------------------------------- /app/rest/request_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_file.cc -------------------------------------------------------------------------------- /app/rest/request_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_file.h -------------------------------------------------------------------------------- /app/rest/request_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_json.h -------------------------------------------------------------------------------- /app/rest/request_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/request_options.h -------------------------------------------------------------------------------- /app/rest/response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/response.cc -------------------------------------------------------------------------------- /app/rest/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/response.h -------------------------------------------------------------------------------- /app/rest/response_binary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/response_binary.cc -------------------------------------------------------------------------------- /app/rest/response_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/response_binary.h -------------------------------------------------------------------------------- /app/rest/response_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/response_json.h -------------------------------------------------------------------------------- /app/rest/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/CMakeLists.txt -------------------------------------------------------------------------------- /app/rest/tests/gzipheader_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/gzipheader_unittest.cc -------------------------------------------------------------------------------- /app/rest/tests/request_binary_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/request_binary_test.cc -------------------------------------------------------------------------------- /app/rest/tests/request_file_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/request_file_test.cc -------------------------------------------------------------------------------- /app/rest/tests/request_json_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/request_json_test.cc -------------------------------------------------------------------------------- /app/rest/tests/request_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/request_test.cc -------------------------------------------------------------------------------- /app/rest/tests/request_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/request_test.h -------------------------------------------------------------------------------- /app/rest/tests/response_binary_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/response_binary_test.cc -------------------------------------------------------------------------------- /app/rest/tests/response_json_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/response_json_test.cc -------------------------------------------------------------------------------- /app/rest/tests/response_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/response_test.cc -------------------------------------------------------------------------------- /app/rest/tests/testdata/sample.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/testdata/sample.fbs -------------------------------------------------------------------------------- /app/rest/tests/transport_curl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/transport_curl_test.cc -------------------------------------------------------------------------------- /app/rest/tests/transport_mock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/transport_mock_test.cc -------------------------------------------------------------------------------- /app/rest/tests/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/util_test.cc -------------------------------------------------------------------------------- /app/rest/tests/zlibwrapper_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/tests/zlibwrapper_unittest.cc -------------------------------------------------------------------------------- /app/rest/transfer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transfer_interface.h -------------------------------------------------------------------------------- /app/rest/transport_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_builder.cc -------------------------------------------------------------------------------- /app/rest/transport_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_builder.h -------------------------------------------------------------------------------- /app/rest/transport_curl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_curl.cc -------------------------------------------------------------------------------- /app/rest/transport_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_curl.h -------------------------------------------------------------------------------- /app/rest/transport_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_interface.cc -------------------------------------------------------------------------------- /app/rest/transport_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_interface.h -------------------------------------------------------------------------------- /app/rest/transport_mock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_mock.cc -------------------------------------------------------------------------------- /app/rest/transport_mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/transport_mock.h -------------------------------------------------------------------------------- /app/rest/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/util.cc -------------------------------------------------------------------------------- /app/rest/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/util.h -------------------------------------------------------------------------------- /app/rest/www_form_url_encoded.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/www_form_url_encoded.cc -------------------------------------------------------------------------------- /app/rest/www_form_url_encoded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/www_form_url_encoded.h -------------------------------------------------------------------------------- /app/rest/zlibwrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/zlibwrapper.cc -------------------------------------------------------------------------------- /app/rest/zlibwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/rest/zlibwrapper.h -------------------------------------------------------------------------------- /app/src/app_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_android.cc -------------------------------------------------------------------------------- /app/src/app_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_android.h -------------------------------------------------------------------------------- /app/src/app_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_common.cc -------------------------------------------------------------------------------- /app/src/app_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_common.h -------------------------------------------------------------------------------- /app/src/app_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_desktop.cc -------------------------------------------------------------------------------- /app/src/app_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_desktop.h -------------------------------------------------------------------------------- /app/src/app_identifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_identifier.cc -------------------------------------------------------------------------------- /app/src/app_identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_identifier.h -------------------------------------------------------------------------------- /app/src/app_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_ios.h -------------------------------------------------------------------------------- /app/src/app_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_ios.mm -------------------------------------------------------------------------------- /app/src/app_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_options.cc -------------------------------------------------------------------------------- /app/src/app_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/app_stub.cc -------------------------------------------------------------------------------- /app/src/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/assert.h -------------------------------------------------------------------------------- /app/src/base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/base64.cc -------------------------------------------------------------------------------- /app/src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/base64.h -------------------------------------------------------------------------------- /app/src/base64_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/base64_fuzzer.cc -------------------------------------------------------------------------------- /app/src/callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/callback.cc -------------------------------------------------------------------------------- /app/src/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/callback.h -------------------------------------------------------------------------------- /app/src/cleanup_notifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/cleanup_notifier.cc -------------------------------------------------------------------------------- /app/src/cleanup_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/cleanup_notifier.h -------------------------------------------------------------------------------- /app/src/embedded_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/embedded_file.h -------------------------------------------------------------------------------- /app/src/fake/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /app/src/fake/FIRApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRApp.h -------------------------------------------------------------------------------- /app/src/fake/FIRApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRApp.mm -------------------------------------------------------------------------------- /app/src/fake/FIRConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRConfiguration.h -------------------------------------------------------------------------------- /app/src/fake/FIRConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRConfiguration.m -------------------------------------------------------------------------------- /app/src/fake/FIRLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRLogger.h -------------------------------------------------------------------------------- /app/src/fake/FIRLoggerLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIRLoggerLevel.h -------------------------------------------------------------------------------- /app/src/fake/FIROptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIROptions.h -------------------------------------------------------------------------------- /app/src/fake/FIROptions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/fake/FIROptions.mm -------------------------------------------------------------------------------- /app/src/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/filesystem.h -------------------------------------------------------------------------------- /app/src/filesystem_apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/filesystem_apple.mm -------------------------------------------------------------------------------- /app/src/filesystem_desktop_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/filesystem_desktop_linux.cc -------------------------------------------------------------------------------- /app/src/filesystem_desktop_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/filesystem_desktop_windows.cc -------------------------------------------------------------------------------- /app/src/function_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/function_registry.cc -------------------------------------------------------------------------------- /app/src/function_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/function_registry.h -------------------------------------------------------------------------------- /app/src/future.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/future.cc -------------------------------------------------------------------------------- /app/src/future_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/future_manager.cc -------------------------------------------------------------------------------- /app/src/future_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/future_manager.h -------------------------------------------------------------------------------- /app/src/heartbeat/date_provider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/heartbeat/date_provider.cc -------------------------------------------------------------------------------- /app/src/heartbeat/date_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/heartbeat/date_provider.h -------------------------------------------------------------------------------- /app/src/include/firebase/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/include/firebase/app.h -------------------------------------------------------------------------------- /app/src/include/firebase/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/include/firebase/future.h -------------------------------------------------------------------------------- /app/src/include/firebase/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/include/firebase/log.h -------------------------------------------------------------------------------- /app/src/include/firebase/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/include/firebase/util.h -------------------------------------------------------------------------------- /app/src/include/firebase/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/include/firebase/variant.h -------------------------------------------------------------------------------- /app/src/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/intrusive_list.h -------------------------------------------------------------------------------- /app/src/invites/cached_receiver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/invites/cached_receiver.cc -------------------------------------------------------------------------------- /app/src/invites/cached_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/invites/cached_receiver.h -------------------------------------------------------------------------------- /app/src/invites/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /app/src/invites/receiver_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/invites/receiver_interface.h -------------------------------------------------------------------------------- /app/src/jobject_reference.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/jobject_reference.cc -------------------------------------------------------------------------------- /app/src/jobject_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/jobject_reference.h -------------------------------------------------------------------------------- /app/src/locale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/locale.cc -------------------------------------------------------------------------------- /app/src/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/locale.h -------------------------------------------------------------------------------- /app/src/locale_apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/locale_apple.mm -------------------------------------------------------------------------------- /app/src/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log.cc -------------------------------------------------------------------------------- /app/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log.h -------------------------------------------------------------------------------- /app/src/log_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log_android.cc -------------------------------------------------------------------------------- /app/src/log_android_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log_android_callback.cc -------------------------------------------------------------------------------- /app/src/log_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log_ios.mm -------------------------------------------------------------------------------- /app/src/log_stdio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/log_stdio.cc -------------------------------------------------------------------------------- /app/src/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/logger.cc -------------------------------------------------------------------------------- /app/src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/logger.h -------------------------------------------------------------------------------- /app/src/mutex_pthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/mutex_pthread.cc -------------------------------------------------------------------------------- /app/src/mutex_windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/mutex_windows.cc -------------------------------------------------------------------------------- /app/src/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/optional.h -------------------------------------------------------------------------------- /app/src/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/path.cc -------------------------------------------------------------------------------- /app/src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/path.h -------------------------------------------------------------------------------- /app/src/pthread_condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/pthread_condvar.h -------------------------------------------------------------------------------- /app/src/reference_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/reference_count.h -------------------------------------------------------------------------------- /app/src/reference_counted_future_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/reference_counted_future_impl.h -------------------------------------------------------------------------------- /app/src/safe_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/safe_reference.h -------------------------------------------------------------------------------- /app/src/scheduler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/scheduler.cc -------------------------------------------------------------------------------- /app/src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/scheduler.h -------------------------------------------------------------------------------- /app/src/secure/user_secure_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/secure/user_secure_internal.h -------------------------------------------------------------------------------- /app/src/secure/user_secure_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/secure/user_secure_manager.cc -------------------------------------------------------------------------------- /app/src/secure/user_secure_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/secure/user_secure_manager.h -------------------------------------------------------------------------------- /app/src/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/semaphore.h -------------------------------------------------------------------------------- /app/src/tests/runner/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /app/src/tests/runner/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/tests/runner/ios/Info.plist -------------------------------------------------------------------------------- /app/src/tests/runner/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/tests/runner/ios/main.m -------------------------------------------------------------------------------- /app/src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/thread.h -------------------------------------------------------------------------------- /app/src/thread_cpp11.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/thread_cpp11.cc -------------------------------------------------------------------------------- /app/src/thread_pthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/thread_pthread.cc -------------------------------------------------------------------------------- /app/src/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/time.cc -------------------------------------------------------------------------------- /app/src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/time.h -------------------------------------------------------------------------------- /app/src/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util.cc -------------------------------------------------------------------------------- /app/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util.h -------------------------------------------------------------------------------- /app/src/util_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_android.cc -------------------------------------------------------------------------------- /app/src/util_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_android.h -------------------------------------------------------------------------------- /app/src/util_apple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_apple.h -------------------------------------------------------------------------------- /app/src/util_apple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_apple.mm -------------------------------------------------------------------------------- /app/src/util_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_ios.h -------------------------------------------------------------------------------- /app/src/util_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/util_ios.mm -------------------------------------------------------------------------------- /app/src/uuid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/uuid.cc -------------------------------------------------------------------------------- /app/src/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/uuid.h -------------------------------------------------------------------------------- /app/src/uuid_ios_darwin.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/uuid_ios_darwin.mm -------------------------------------------------------------------------------- /app/src/variant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/variant.cc -------------------------------------------------------------------------------- /app/src/variant_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/variant_util.cc -------------------------------------------------------------------------------- /app/src/variant_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/src/variant_util.h -------------------------------------------------------------------------------- /app/test_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/test_resources/build.gradle -------------------------------------------------------------------------------- /app/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/CMakeLists.txt -------------------------------------------------------------------------------- /app/tests/app_desktop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/app_desktop_test.cc -------------------------------------------------------------------------------- /app/tests/app_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/app_test.cc -------------------------------------------------------------------------------- /app/tests/assert_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/assert_test.cc -------------------------------------------------------------------------------- /app/tests/base64_openssh_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/base64_openssh_test.cc -------------------------------------------------------------------------------- /app/tests/base64_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/base64_test.cc -------------------------------------------------------------------------------- /app/tests/callback_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/callback_test.cc -------------------------------------------------------------------------------- /app/tests/cleanup_notifier_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/cleanup_notifier_test.cc -------------------------------------------------------------------------------- /app/tests/flexbuffer_matcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/flexbuffer_matcher.cc -------------------------------------------------------------------------------- /app/tests/flexbuffer_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/flexbuffer_matcher.h -------------------------------------------------------------------------------- /app/tests/flexbuffer_matcher_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/flexbuffer_matcher_test.cc -------------------------------------------------------------------------------- /app/tests/future_manager_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/future_manager_test.cc -------------------------------------------------------------------------------- /app/tests/future_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/future_test.cc -------------------------------------------------------------------------------- /app/tests/google_services_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/google_services_test.cc -------------------------------------------------------------------------------- /app/tests/intrusive_list_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/intrusive_list_test.cc -------------------------------------------------------------------------------- /app/tests/jobject_reference_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/jobject_reference_test.cc -------------------------------------------------------------------------------- /app/tests/locale_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/locale_test.cc -------------------------------------------------------------------------------- /app/tests/log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/log_test.cc -------------------------------------------------------------------------------- /app/tests/logger_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/logger_test.cc -------------------------------------------------------------------------------- /app/tests/optional_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/optional_test.cc -------------------------------------------------------------------------------- /app/tests/path_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/path_test.cc -------------------------------------------------------------------------------- /app/tests/reference_count_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/reference_count_test.cc -------------------------------------------------------------------------------- /app/tests/scheduler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/scheduler_test.cc -------------------------------------------------------------------------------- /app/tests/semaphore_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/semaphore_test.cc -------------------------------------------------------------------------------- /app/tests/swizzle_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/swizzle_test.mm -------------------------------------------------------------------------------- /app/tests/thread_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/thread_test.cc -------------------------------------------------------------------------------- /app/tests/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/time_test.cc -------------------------------------------------------------------------------- /app/tests/util_android_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/util_android_test.cc -------------------------------------------------------------------------------- /app/tests/util_ios_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/util_ios_test.mm -------------------------------------------------------------------------------- /app/tests/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/util_test.cc -------------------------------------------------------------------------------- /app/tests/uuid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/uuid_test.cc -------------------------------------------------------------------------------- /app/tests/variant_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/variant_test.cc -------------------------------------------------------------------------------- /app/tests/variant_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app/tests/variant_util_test.cc -------------------------------------------------------------------------------- /app_check/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/CMakeLists.txt -------------------------------------------------------------------------------- /app_check/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/build.gradle -------------------------------------------------------------------------------- /app_check/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/Info.plist -------------------------------------------------------------------------------- /app_check/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/Podfile -------------------------------------------------------------------------------- /app_check/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/build.gradle -------------------------------------------------------------------------------- /app_check/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/gradlew -------------------------------------------------------------------------------- /app_check/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/gradlew.bat -------------------------------------------------------------------------------- /app_check/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/integration_test/proguard.pro -------------------------------------------------------------------------------- /app_check/src/android/common_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/android/common_android.cc -------------------------------------------------------------------------------- /app_check/src/android/common_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/android/common_android.h -------------------------------------------------------------------------------- /app_check/src/common/app_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/common/app_check.cc -------------------------------------------------------------------------------- /app_check/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/common/common.h -------------------------------------------------------------------------------- /app_check/src/desktop/token_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/desktop/token_response.h -------------------------------------------------------------------------------- /app_check/src/ios/app_check_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/app_check_ios.h -------------------------------------------------------------------------------- /app_check/src/ios/app_check_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/app_check_ios.mm -------------------------------------------------------------------------------- /app_check/src/ios/debug_provider_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/debug_provider_ios.h -------------------------------------------------------------------------------- /app_check/src/ios/debug_provider_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/debug_provider_ios.mm -------------------------------------------------------------------------------- /app_check/src/ios/util_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/util_ios.h -------------------------------------------------------------------------------- /app_check/src/ios/util_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/app_check/src/ios/util_ios.mm -------------------------------------------------------------------------------- /auth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/CMakeLists.txt -------------------------------------------------------------------------------- /auth/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/NOTICES -------------------------------------------------------------------------------- /auth/auth_additional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/auth_additional.pro -------------------------------------------------------------------------------- /auth/auth_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/auth_resources/build.gradle -------------------------------------------------------------------------------- /auth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/build.gradle -------------------------------------------------------------------------------- /auth/integration_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/CMakeLists.txt -------------------------------------------------------------------------------- /auth/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/Info.plist -------------------------------------------------------------------------------- /auth/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/Podfile -------------------------------------------------------------------------------- /auth/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/build.gradle -------------------------------------------------------------------------------- /auth/integration_test/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/googletest.cmake -------------------------------------------------------------------------------- /auth/integration_test/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/gradle.properties -------------------------------------------------------------------------------- /auth/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/gradlew -------------------------------------------------------------------------------- /auth/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/gradlew.bat -------------------------------------------------------------------------------- /auth/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/proguard.pro -------------------------------------------------------------------------------- /auth/integration_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/integration_test/settings.gradle -------------------------------------------------------------------------------- /auth/samples/src/doc_samples.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/samples/src/doc_samples.cc -------------------------------------------------------------------------------- /auth/src/android/auth_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/android/auth_android.cc -------------------------------------------------------------------------------- /auth/src/android/common_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/android/common_android.cc -------------------------------------------------------------------------------- /auth/src/android/common_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/android/common_android.h -------------------------------------------------------------------------------- /auth/src/android/credential_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/android/credential_android.cc -------------------------------------------------------------------------------- /auth/src/android/user_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/android/user_android.cc -------------------------------------------------------------------------------- /auth/src/auth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/auth.cc -------------------------------------------------------------------------------- /auth/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/common.cc -------------------------------------------------------------------------------- /auth/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/common.h -------------------------------------------------------------------------------- /auth/src/credential.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/credential.cc -------------------------------------------------------------------------------- /auth/src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/data.h -------------------------------------------------------------------------------- /auth/src/desktop/auth_constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_constants.cc -------------------------------------------------------------------------------- /auth/src/desktop/auth_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_constants.h -------------------------------------------------------------------------------- /auth/src/desktop/auth_credential.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_credential.cc -------------------------------------------------------------------------------- /auth/src/desktop/auth_credential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_credential.h -------------------------------------------------------------------------------- /auth/src/desktop/auth_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_data_handle.h -------------------------------------------------------------------------------- /auth/src/desktop/auth_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_desktop.cc -------------------------------------------------------------------------------- /auth/src/desktop/auth_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_desktop.h -------------------------------------------------------------------------------- /auth/src/desktop/auth_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_util.cc -------------------------------------------------------------------------------- /auth/src/desktop/auth_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/auth_util.h -------------------------------------------------------------------------------- /auth/src/desktop/credential_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/credential_desktop.cc -------------------------------------------------------------------------------- /auth/src/desktop/credential_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/credential_impl.cc -------------------------------------------------------------------------------- /auth/src/desktop/credential_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/credential_impl.h -------------------------------------------------------------------------------- /auth/src/desktop/credential_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/credential_util.cc -------------------------------------------------------------------------------- /auth/src/desktop/credential_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/credential_util.h -------------------------------------------------------------------------------- /auth/src/desktop/promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/promise.h -------------------------------------------------------------------------------- /auth/src/desktop/provider_user_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/provider_user_info.h -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/auth_request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/auth_request.cc -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/auth_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/auth_request.h -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/auth_response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/auth_response.cc -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/auth_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/auth_response.h -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/error_codes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/error_codes.cc -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/error_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/error_codes.h -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/request.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/request.fbs -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/response.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/response.fbs -------------------------------------------------------------------------------- /auth/src/desktop/rpcs/sign_up_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/rpcs/sign_up_request.h -------------------------------------------------------------------------------- /auth/src/desktop/sign_in_flow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/sign_in_flow.cc -------------------------------------------------------------------------------- /auth/src/desktop/sign_in_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/sign_in_flow.h -------------------------------------------------------------------------------- /auth/src/desktop/user_data.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/user_data.fbs -------------------------------------------------------------------------------- /auth/src/desktop/user_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/user_desktop.cc -------------------------------------------------------------------------------- /auth/src/desktop/user_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/user_desktop.h -------------------------------------------------------------------------------- /auth/src/desktop/user_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/user_view.cc -------------------------------------------------------------------------------- /auth/src/desktop/user_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/user_view.h -------------------------------------------------------------------------------- /auth/src/desktop/validate_credential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/desktop/validate_credential.h -------------------------------------------------------------------------------- /auth/src/include/firebase/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/include/firebase/auth.h -------------------------------------------------------------------------------- /auth/src/include/firebase/auth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/include/firebase/auth/types.h -------------------------------------------------------------------------------- /auth/src/include/firebase/auth/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/include/firebase/auth/user.h -------------------------------------------------------------------------------- /auth/src/ios/auth_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/auth_ios.mm -------------------------------------------------------------------------------- /auth/src/ios/common_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/common_ios.h -------------------------------------------------------------------------------- /auth/src/ios/credential_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/credential_ios.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuth.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuth.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuth.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthCredential.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthCredential.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthCredential.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthDataResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthDataResult.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthDataResult.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthDataResult.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthErrors.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthSettings.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthTokenResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthTokenResult.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRAuthUIDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRAuthUIDelegate.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIROAuthCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIROAuthCredential.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIROAuthCredential.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIROAuthCredential.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIROAuthProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIROAuthProvider.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIROAuthProvider.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIROAuthProvider.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRUser.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRUser.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRUserInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRUserInfo.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRUserMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRUserMetadata.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FIRUserMetadata.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FIRUserMetadata.mm -------------------------------------------------------------------------------- /auth/src/ios/fake/FirebaseAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FirebaseAuth.h -------------------------------------------------------------------------------- /auth/src/ios/fake/FirebaseAuthVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/fake/FirebaseAuthVersion.h -------------------------------------------------------------------------------- /auth/src/ios/user_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/ios/user_ios.mm -------------------------------------------------------------------------------- /auth/src/user.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/src/user.cc -------------------------------------------------------------------------------- /auth/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/CMakeLists.txt -------------------------------------------------------------------------------- /auth/tests/auth_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/auth_test.cc -------------------------------------------------------------------------------- /auth/tests/credential_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/credential_test.cc -------------------------------------------------------------------------------- /auth/tests/desktop/auth_desktop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/auth_desktop_test.cc -------------------------------------------------------------------------------- /auth/tests/desktop/fakes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/fakes.cc -------------------------------------------------------------------------------- /auth/tests/desktop/fakes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/fakes.h -------------------------------------------------------------------------------- /auth/tests/desktop/rpcs/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/rpcs/test_util.cc -------------------------------------------------------------------------------- /auth/tests/desktop/rpcs/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/rpcs/test_util.h -------------------------------------------------------------------------------- /auth/tests/desktop/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/test_utils.cc -------------------------------------------------------------------------------- /auth/tests/desktop/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/test_utils.h -------------------------------------------------------------------------------- /auth/tests/desktop/user_desktop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/desktop/user_desktop_test.cc -------------------------------------------------------------------------------- /auth/tests/user_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/auth/tests/user_test.cc -------------------------------------------------------------------------------- /binary_to_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/binary_to_array.py -------------------------------------------------------------------------------- /binary_to_array_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/binary_to_array_test.py -------------------------------------------------------------------------------- /cmake/CTestCustom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/CTestCustom.cmake -------------------------------------------------------------------------------- /cmake/FindASANDylib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/FindASANDylib.cmake -------------------------------------------------------------------------------- /cmake/binary_to_array.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/binary_to_array.cmake -------------------------------------------------------------------------------- /cmake/cpp_pack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/cpp_pack.cmake -------------------------------------------------------------------------------- /cmake/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/external/boringssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/boringssl.cmake -------------------------------------------------------------------------------- /cmake/external/curl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/curl.cmake -------------------------------------------------------------------------------- /cmake/external/firebase_ios_sdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/firebase_ios_sdk.cmake -------------------------------------------------------------------------------- /cmake/external/firestore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/firestore.cmake -------------------------------------------------------------------------------- /cmake/external/firestore.patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/firestore.patch.txt -------------------------------------------------------------------------------- /cmake/external/flatbuffers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/flatbuffers.cmake -------------------------------------------------------------------------------- /cmake/external/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/googletest.cmake -------------------------------------------------------------------------------- /cmake/external/leveldb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/leveldb.cmake -------------------------------------------------------------------------------- /cmake/external/libuv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/libuv.cmake -------------------------------------------------------------------------------- /cmake/external/uWebSockets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/uWebSockets.cmake -------------------------------------------------------------------------------- /cmake/external/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external/zlib.cmake -------------------------------------------------------------------------------- /cmake/external_rules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/external_rules.cmake -------------------------------------------------------------------------------- /cmake/firebase_cpp_gradle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/firebase_cpp_gradle.cmake -------------------------------------------------------------------------------- /cmake/future_lib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/future_lib.cmake -------------------------------------------------------------------------------- /cmake/test_rules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/test_rules.cmake -------------------------------------------------------------------------------- /cmake/toolchains/apple.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/toolchains/apple.toolchain.cmake -------------------------------------------------------------------------------- /cmake/toolchains/ios.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/toolchains/ios.cmake -------------------------------------------------------------------------------- /cmake/toolchains/ios_simulator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/toolchains/ios_simulator.cmake -------------------------------------------------------------------------------- /cmake/toolchains/linux_32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cmake/toolchains/linux_32.cmake -------------------------------------------------------------------------------- /cpp_sdk_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/cpp_sdk_version.json -------------------------------------------------------------------------------- /database/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/CMakeLists.txt -------------------------------------------------------------------------------- /database/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/NOTICES -------------------------------------------------------------------------------- /database/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/build.gradle -------------------------------------------------------------------------------- /database/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/Info.plist -------------------------------------------------------------------------------- /database/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/Podfile -------------------------------------------------------------------------------- /database/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/build.gradle -------------------------------------------------------------------------------- /database/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/gradlew -------------------------------------------------------------------------------- /database/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/gradlew.bat -------------------------------------------------------------------------------- /database/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/proguard.pro -------------------------------------------------------------------------------- /database/integration_test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/integration_test/readme.md -------------------------------------------------------------------------------- /database/src/android/query_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/android/query_android.cc -------------------------------------------------------------------------------- /database/src/android/query_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/android/query_android.h -------------------------------------------------------------------------------- /database/src/android/util_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/android/util_android.cc -------------------------------------------------------------------------------- /database/src/android/util_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/android/util_android.h -------------------------------------------------------------------------------- /database/src/common/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/cleanup.h -------------------------------------------------------------------------------- /database/src/common/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/common.cc -------------------------------------------------------------------------------- /database/src/common/data_snapshot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/data_snapshot.cc -------------------------------------------------------------------------------- /database/src/common/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/database.cc -------------------------------------------------------------------------------- /database/src/common/disconnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/disconnection.cc -------------------------------------------------------------------------------- /database/src/common/listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/listener.cc -------------------------------------------------------------------------------- /database/src/common/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/listener.h -------------------------------------------------------------------------------- /database/src/common/mutable_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/mutable_data.cc -------------------------------------------------------------------------------- /database/src/common/query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/query.cc -------------------------------------------------------------------------------- /database/src/common/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/query.h -------------------------------------------------------------------------------- /database/src/common/query_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/common/query_spec.h -------------------------------------------------------------------------------- /database/src/desktop/core/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/constants.h -------------------------------------------------------------------------------- /database/src/desktop/core/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/operation.h -------------------------------------------------------------------------------- /database/src/desktop/core/repo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/repo.cc -------------------------------------------------------------------------------- /database/src/desktop/core/repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/repo.h -------------------------------------------------------------------------------- /database/src/desktop/core/sync_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/sync_tree.h -------------------------------------------------------------------------------- /database/src/desktop/core/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/tag.h -------------------------------------------------------------------------------- /database/src/desktop/core/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/core/tree.h -------------------------------------------------------------------------------- /database/src/desktop/query_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/query_desktop.cc -------------------------------------------------------------------------------- /database/src/desktop/query_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/query_desktop.h -------------------------------------------------------------------------------- /database/src/desktop/util_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/util_desktop.cc -------------------------------------------------------------------------------- /database/src/desktop/util_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/util_desktop.h -------------------------------------------------------------------------------- /database/src/desktop/view/change.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/view/change.cc -------------------------------------------------------------------------------- /database/src/desktop/view/change.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/view/change.h -------------------------------------------------------------------------------- /database/src/desktop/view/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/view/event.h -------------------------------------------------------------------------------- /database/src/desktop/view/view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/view/view.cc -------------------------------------------------------------------------------- /database/src/desktop/view/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/desktop/view/view.h -------------------------------------------------------------------------------- /database/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /database/src/ios/data_snapshot_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/data_snapshot_ios.h -------------------------------------------------------------------------------- /database/src/ios/data_snapshot_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/data_snapshot_ios.mm -------------------------------------------------------------------------------- /database/src/ios/database_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/database_ios.h -------------------------------------------------------------------------------- /database/src/ios/database_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/database_ios.mm -------------------------------------------------------------------------------- /database/src/ios/disconnection_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/disconnection_ios.h -------------------------------------------------------------------------------- /database/src/ios/disconnection_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/disconnection_ios.mm -------------------------------------------------------------------------------- /database/src/ios/mutable_data_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/mutable_data_ios.h -------------------------------------------------------------------------------- /database/src/ios/mutable_data_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/mutable_data_ios.mm -------------------------------------------------------------------------------- /database/src/ios/query_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/query_ios.h -------------------------------------------------------------------------------- /database/src/ios/query_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/query_ios.mm -------------------------------------------------------------------------------- /database/src/ios/util_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/util_ios.h -------------------------------------------------------------------------------- /database/src/ios/util_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/util_ios.mm -------------------------------------------------------------------------------- /database/src/ios/util_ios_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/src/ios/util_ios_test.mm -------------------------------------------------------------------------------- /database/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/database/tests/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /dynamic_links/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/dynamic_links/CMakeLists.txt -------------------------------------------------------------------------------- /dynamic_links/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/dynamic_links/build.gradle -------------------------------------------------------------------------------- /dynamic_links/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/dynamic_links/src/common.cc -------------------------------------------------------------------------------- /dynamic_links/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/dynamic_links/src/common.h -------------------------------------------------------------------------------- /dynamic_links/src/listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/dynamic_links/src/listener.cc -------------------------------------------------------------------------------- /external/pip_requirements.txt: -------------------------------------------------------------------------------- 1 | absl-py 2 | protobuf 3 | retry 4 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/arm64-osx.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | arm64-osx 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/openssl/x64-linux.txt: -------------------------------------------------------------------------------- 1 | openssl 2 | protobuf 3 | zlib 4 | --triplet 5 | x64-linux 6 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/openssl/x64-osx.txt: -------------------------------------------------------------------------------- 1 | openssl 2 | protobuf 3 | zlib 4 | --triplet 5 | x64-osx 6 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/openssl/x86-linux.txt: -------------------------------------------------------------------------------- 1 | openssl 2 | protobuf 3 | zlib 4 | --triplet 5 | x86-linux 6 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x64-linux.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x64-linux 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x64-osx.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x64-osx 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x64-windows-static-md.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x64-windows-static-md 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x64-windows-static.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x64-windows-static 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x86-linux.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x86-linux 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x86-windows-static-md.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x86-windows-static-md 5 | -------------------------------------------------------------------------------- /external/vcpkg_custom_data/response_files/x86-windows-static.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | zlib 3 | --triplet 4 | x86-windows-static 5 | -------------------------------------------------------------------------------- /firestore/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/.clang-format -------------------------------------------------------------------------------- /firestore/AndroidManifest.xml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/AndroidManifest.xml.tmpl -------------------------------------------------------------------------------- /firestore/AndroidTest.java.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/AndroidTest.java.tmpl -------------------------------------------------------------------------------- /firestore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/CMakeLists.txt -------------------------------------------------------------------------------- /firestore/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/CONTRIBUTING.md -------------------------------------------------------------------------------- /firestore/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | filter=-runtime/references,-build/c++11 2 | -------------------------------------------------------------------------------- /firestore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/Info.plist -------------------------------------------------------------------------------- /firestore/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/architecture.png -------------------------------------------------------------------------------- /firestore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/build.gradle -------------------------------------------------------------------------------- /firestore/generate_android_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/generate_android_test.py -------------------------------------------------------------------------------- /firestore/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/integration_test/Info.plist -------------------------------------------------------------------------------- /firestore/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/integration_test/Podfile -------------------------------------------------------------------------------- /firestore/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/integration_test/gradlew -------------------------------------------------------------------------------- /firestore/src/android/blob_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/blob_android.cc -------------------------------------------------------------------------------- /firestore/src/android/blob_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/blob_android.h -------------------------------------------------------------------------------- /firestore/src/android/query_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/query_android.h -------------------------------------------------------------------------------- /firestore/src/android/util_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/util_android.cc -------------------------------------------------------------------------------- /firestore/src/android/util_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/util_android.h -------------------------------------------------------------------------------- /firestore/src/android/wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/wrapper.cc -------------------------------------------------------------------------------- /firestore/src/android/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/android/wrapper.h -------------------------------------------------------------------------------- /firestore/src/common/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/cleanup.h -------------------------------------------------------------------------------- /firestore/src/common/compiler_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/compiler_info.cc -------------------------------------------------------------------------------- /firestore/src/common/compiler_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/compiler_info.h -------------------------------------------------------------------------------- /firestore/src/common/event_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/event_listener.h -------------------------------------------------------------------------------- /firestore/src/common/field_path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/field_path.cc -------------------------------------------------------------------------------- /firestore/src/common/field_value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/field_value.cc -------------------------------------------------------------------------------- /firestore/src/common/filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/filter.cc -------------------------------------------------------------------------------- /firestore/src/common/firestore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/firestore.cc -------------------------------------------------------------------------------- /firestore/src/common/futures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/futures.cc -------------------------------------------------------------------------------- /firestore/src/common/futures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/futures.h -------------------------------------------------------------------------------- /firestore/src/common/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/macros.h -------------------------------------------------------------------------------- /firestore/src/common/query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/query.cc -------------------------------------------------------------------------------- /firestore/src/common/set_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/set_options.cc -------------------------------------------------------------------------------- /firestore/src/common/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/settings.cc -------------------------------------------------------------------------------- /firestore/src/common/to_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/to_string.cc -------------------------------------------------------------------------------- /firestore/src/common/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/to_string.h -------------------------------------------------------------------------------- /firestore/src/common/transaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/transaction.cc -------------------------------------------------------------------------------- /firestore/src/common/type_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/type_mapping.h -------------------------------------------------------------------------------- /firestore/src/common/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/util.cc -------------------------------------------------------------------------------- /firestore/src/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/util.h -------------------------------------------------------------------------------- /firestore/src/common/write_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/common/write_batch.cc -------------------------------------------------------------------------------- /firestore/src/jni/arena_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/arena_ref.cc -------------------------------------------------------------------------------- /firestore/src/jni/arena_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/arena_ref.h -------------------------------------------------------------------------------- /firestore/src/jni/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/array.h -------------------------------------------------------------------------------- /firestore/src/jni/array_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/array_list.cc -------------------------------------------------------------------------------- /firestore/src/jni/array_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/array_list.h -------------------------------------------------------------------------------- /firestore/src/jni/boolean.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/boolean.cc -------------------------------------------------------------------------------- /firestore/src/jni/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/boolean.h -------------------------------------------------------------------------------- /firestore/src/jni/call_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/call_traits.h -------------------------------------------------------------------------------- /firestore/src/jni/class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/class.cc -------------------------------------------------------------------------------- /firestore/src/jni/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/class.h -------------------------------------------------------------------------------- /firestore/src/jni/collection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/collection.cc -------------------------------------------------------------------------------- /firestore/src/jni/collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/collection.h -------------------------------------------------------------------------------- /firestore/src/jni/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/compare.h -------------------------------------------------------------------------------- /firestore/src/jni/declaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/declaration.h -------------------------------------------------------------------------------- /firestore/src/jni/double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/double.cc -------------------------------------------------------------------------------- /firestore/src/jni/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/double.h -------------------------------------------------------------------------------- /firestore/src/jni/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/env.cc -------------------------------------------------------------------------------- /firestore/src/jni/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/env.h -------------------------------------------------------------------------------- /firestore/src/jni/hash_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/hash_map.cc -------------------------------------------------------------------------------- /firestore/src/jni/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/hash_map.h -------------------------------------------------------------------------------- /firestore/src/jni/integer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/integer.cc -------------------------------------------------------------------------------- /firestore/src/jni/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/integer.h -------------------------------------------------------------------------------- /firestore/src/jni/iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/iterator.cc -------------------------------------------------------------------------------- /firestore/src/jni/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/iterator.h -------------------------------------------------------------------------------- /firestore/src/jni/jni.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/jni.cc -------------------------------------------------------------------------------- /firestore/src/jni/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/jni.h -------------------------------------------------------------------------------- /firestore/src/jni/jni_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/jni_fwd.h -------------------------------------------------------------------------------- /firestore/src/jni/list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/list.cc -------------------------------------------------------------------------------- /firestore/src/jni/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/list.h -------------------------------------------------------------------------------- /firestore/src/jni/loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/loader.cc -------------------------------------------------------------------------------- /firestore/src/jni/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/loader.h -------------------------------------------------------------------------------- /firestore/src/jni/long.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/long.cc -------------------------------------------------------------------------------- /firestore/src/jni/long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/long.h -------------------------------------------------------------------------------- /firestore/src/jni/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/map.cc -------------------------------------------------------------------------------- /firestore/src/jni/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/map.h -------------------------------------------------------------------------------- /firestore/src/jni/object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/object.cc -------------------------------------------------------------------------------- /firestore/src/jni/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/object.h -------------------------------------------------------------------------------- /firestore/src/jni/ownership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/ownership.h -------------------------------------------------------------------------------- /firestore/src/jni/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/set.h -------------------------------------------------------------------------------- /firestore/src/jni/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/string.cc -------------------------------------------------------------------------------- /firestore/src/jni/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/string.h -------------------------------------------------------------------------------- /firestore/src/jni/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/task.cc -------------------------------------------------------------------------------- /firestore/src/jni/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/task.h -------------------------------------------------------------------------------- /firestore/src/jni/throwable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/throwable.cc -------------------------------------------------------------------------------- /firestore/src/jni/throwable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/throwable.h -------------------------------------------------------------------------------- /firestore/src/jni/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/jni/traits.h -------------------------------------------------------------------------------- /firestore/src/main/converter_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/converter_main.h -------------------------------------------------------------------------------- /firestore/src/main/field_value_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/field_value_main.h -------------------------------------------------------------------------------- /firestore/src/main/filter_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/filter_main.cc -------------------------------------------------------------------------------- /firestore/src/main/filter_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/filter_main.h -------------------------------------------------------------------------------- /firestore/src/main/firestore_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/firestore_main.cc -------------------------------------------------------------------------------- /firestore/src/main/firestore_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/firestore_main.h -------------------------------------------------------------------------------- /firestore/src/main/listener_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/listener_main.h -------------------------------------------------------------------------------- /firestore/src/main/promise_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/promise_main.h -------------------------------------------------------------------------------- /firestore/src/main/query_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/query_main.cc -------------------------------------------------------------------------------- /firestore/src/main/query_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/query_main.h -------------------------------------------------------------------------------- /firestore/src/main/set_options_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/set_options_main.h -------------------------------------------------------------------------------- /firestore/src/main/source_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/source_main.h -------------------------------------------------------------------------------- /firestore/src/main/transaction_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/transaction_main.h -------------------------------------------------------------------------------- /firestore/src/main/util_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/util_main.h -------------------------------------------------------------------------------- /firestore/src/main/write_batch_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/firestore/src/main/write_batch_main.h -------------------------------------------------------------------------------- /functions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/CMakeLists.txt -------------------------------------------------------------------------------- /functions/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/build.gradle -------------------------------------------------------------------------------- /functions/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/integration_test/Info.plist -------------------------------------------------------------------------------- /functions/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/integration_test/Podfile -------------------------------------------------------------------------------- /functions/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/integration_test/gradlew -------------------------------------------------------------------------------- /functions/samples/src/doc_samples.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/samples/src/doc_samples.cc -------------------------------------------------------------------------------- /functions/src/common/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/src/common/common.cc -------------------------------------------------------------------------------- /functions/src/common/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/src/common/functions.cc -------------------------------------------------------------------------------- /functions/src/desktop/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/src/desktop/serialization.h -------------------------------------------------------------------------------- /functions/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /functions/src/ios/functions_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/src/ios/functions_ios.h -------------------------------------------------------------------------------- /functions/src/ios/functions_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/functions/src/ios/functions_ios.mm -------------------------------------------------------------------------------- /gma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/CMakeLists.txt -------------------------------------------------------------------------------- /gma/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/build.gradle -------------------------------------------------------------------------------- /gma/gma_additional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/gma_additional.pro -------------------------------------------------------------------------------- /gma/gma_resources/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/gma_resources/AndroidManifest.xml -------------------------------------------------------------------------------- /gma/gma_resources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/gma_resources/build.gradle -------------------------------------------------------------------------------- /gma/integration_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/CMakeLists.txt -------------------------------------------------------------------------------- /gma/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/Info.plist -------------------------------------------------------------------------------- /gma/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/Podfile -------------------------------------------------------------------------------- /gma/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/build.gradle -------------------------------------------------------------------------------- /gma/integration_test/empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/empty.swift -------------------------------------------------------------------------------- /gma/integration_test/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/googletest.cmake -------------------------------------------------------------------------------- /gma/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/gradlew -------------------------------------------------------------------------------- /gma/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/gradlew.bat -------------------------------------------------------------------------------- /gma/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/proguard.pro -------------------------------------------------------------------------------- /gma/integration_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/integration_test/settings.gradle -------------------------------------------------------------------------------- /gma/src/android/ad_error_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/android/ad_error_android.cc -------------------------------------------------------------------------------- /gma/src/android/ad_error_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/android/ad_error_android.h -------------------------------------------------------------------------------- /gma/src/android/gma_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/android/gma_android.cc -------------------------------------------------------------------------------- /gma/src/android/gma_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/android/gma_android.h -------------------------------------------------------------------------------- /gma/src/common/ad_error_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/ad_error_internal.h -------------------------------------------------------------------------------- /gma/src/common/ad_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/ad_view.cc -------------------------------------------------------------------------------- /gma/src/common/ad_view_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/ad_view_internal.cc -------------------------------------------------------------------------------- /gma/src/common/ad_view_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/ad_view_internal.h -------------------------------------------------------------------------------- /gma/src/common/gma_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/gma_common.cc -------------------------------------------------------------------------------- /gma/src/common/gma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/gma_common.h -------------------------------------------------------------------------------- /gma/src/common/interstitial_ad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/interstitial_ad.cc -------------------------------------------------------------------------------- /gma/src/common/native_ad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/native_ad.cc -------------------------------------------------------------------------------- /gma/src/common/native_ad_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/native_ad_internal.cc -------------------------------------------------------------------------------- /gma/src/common/native_ad_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/native_ad_internal.h -------------------------------------------------------------------------------- /gma/src/common/query_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/query_info.cc -------------------------------------------------------------------------------- /gma/src/common/query_info_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/query_info_internal.cc -------------------------------------------------------------------------------- /gma/src/common/query_info_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/query_info_internal.h -------------------------------------------------------------------------------- /gma/src/common/rewarded_ad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/rewarded_ad.cc -------------------------------------------------------------------------------- /gma/src/common/rewarded_ad_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/rewarded_ad_internal.h -------------------------------------------------------------------------------- /gma/src/common/ump/consent_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/common/ump/consent_info.cc -------------------------------------------------------------------------------- /gma/src/include/firebase/gma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/include/firebase/gma.h -------------------------------------------------------------------------------- /gma/src/include/firebase/gma/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/include/firebase/gma/types.h -------------------------------------------------------------------------------- /gma/src/include/firebase/gma/ump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/include/firebase/gma/ump.h -------------------------------------------------------------------------------- /gma/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /gma/src/ios/FADAdSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADAdSize.h -------------------------------------------------------------------------------- /gma/src/ios/FADAdSize.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADAdSize.mm -------------------------------------------------------------------------------- /gma/src/ios/FADAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADAdView.h -------------------------------------------------------------------------------- /gma/src/ios/FADAdView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADAdView.mm -------------------------------------------------------------------------------- /gma/src/ios/FADInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADInterstitialDelegate.h -------------------------------------------------------------------------------- /gma/src/ios/FADNativeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADNativeDelegate.h -------------------------------------------------------------------------------- /gma/src/ios/FADNativeDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADNativeDelegate.mm -------------------------------------------------------------------------------- /gma/src/ios/FADRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADRequest.h -------------------------------------------------------------------------------- /gma/src/ios/FADRequest.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADRequest.mm -------------------------------------------------------------------------------- /gma/src/ios/FADRewardedAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADRewardedAdDelegate.h -------------------------------------------------------------------------------- /gma/src/ios/FADRewardedAdDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/FADRewardedAdDelegate.mm -------------------------------------------------------------------------------- /gma/src/ios/GADNativeAdCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/GADNativeAdCpp.h -------------------------------------------------------------------------------- /gma/src/ios/ad_error_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/ad_error_ios.h -------------------------------------------------------------------------------- /gma/src/ios/ad_error_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/ad_error_ios.mm -------------------------------------------------------------------------------- /gma/src/ios/ad_response_info_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/ad_response_info_ios.h -------------------------------------------------------------------------------- /gma/src/ios/ad_view_internal_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/ad_view_internal_ios.h -------------------------------------------------------------------------------- /gma/src/ios/ad_view_internal_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/ad_view_internal_ios.mm -------------------------------------------------------------------------------- /gma/src/ios/gma_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/gma_ios.h -------------------------------------------------------------------------------- /gma/src/ios/gma_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/gma_ios.mm -------------------------------------------------------------------------------- /gma/src/ios/native_ad_image_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/native_ad_image_ios.h -------------------------------------------------------------------------------- /gma/src/ios/native_ad_image_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/native_ad_image_ios.mm -------------------------------------------------------------------------------- /gma/src/ios/native_ad_internal_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/native_ad_internal_ios.h -------------------------------------------------------------------------------- /gma/src/ios/native_ad_internal_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/native_ad_internal_ios.mm -------------------------------------------------------------------------------- /gma/src/ios/query_info_internal_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/query_info_internal_ios.h -------------------------------------------------------------------------------- /gma/src/ios/response_info_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/response_info_ios.h -------------------------------------------------------------------------------- /gma/src/ios/response_info_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/ios/response_info_ios.mm -------------------------------------------------------------------------------- /gma/src/stub/ad_error_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/stub/ad_error_stub.cc -------------------------------------------------------------------------------- /gma/src/stub/ad_view_internal_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/stub/ad_view_internal_stub.h -------------------------------------------------------------------------------- /gma/src/stub/gma_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/stub/gma_stub.cc -------------------------------------------------------------------------------- /gma/src/stub/native_ad_image_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/stub/native_ad_image_stub.cc -------------------------------------------------------------------------------- /gma/src/stub/response_info_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gma/src/stub/response_info_stub.cc -------------------------------------------------------------------------------- /gms_package_versions_integrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gms_package_versions_integrate.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/gradlew.bat -------------------------------------------------------------------------------- /installations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/installations/CMakeLists.txt -------------------------------------------------------------------------------- /installations/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/installations/build.gradle -------------------------------------------------------------------------------- /installations/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/installations/src/common.h -------------------------------------------------------------------------------- /installations/src/installations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/installations/src/installations.cc -------------------------------------------------------------------------------- /installations/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /installations/src_ios/fake/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /installations/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/installations/tests/CMakeLists.txt -------------------------------------------------------------------------------- /ios_pod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/ios_pod/CMakeLists.txt -------------------------------------------------------------------------------- /ios_pod/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/ios_pod/Podfile -------------------------------------------------------------------------------- /ios_pod/empty.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/ios_pod/empty.cc -------------------------------------------------------------------------------- /ios_pod/empty_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/ios_pod/empty_CMakeLists.txt -------------------------------------------------------------------------------- /ios_pod/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/ios_pod/readme.txt -------------------------------------------------------------------------------- /merge_libraries_test_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/merge_libraries_test_file.cc -------------------------------------------------------------------------------- /messaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/AndroidManifest.xml -------------------------------------------------------------------------------- /messaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/CMakeLists.txt -------------------------------------------------------------------------------- /messaging/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/build.gradle -------------------------------------------------------------------------------- /messaging/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/integration_test/Info.plist -------------------------------------------------------------------------------- /messaging/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/integration_test/Podfile -------------------------------------------------------------------------------- /messaging/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/integration_test/gradlew -------------------------------------------------------------------------------- /messaging/integration_test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/integration_test/readme.md -------------------------------------------------------------------------------- /messaging/messaging_additional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/messaging_additional.pro -------------------------------------------------------------------------------- /messaging/messaging_java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/messaging_java/build.gradle -------------------------------------------------------------------------------- /messaging/samples/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/samples/AndroidManifest.xml -------------------------------------------------------------------------------- /messaging/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/common.cc -------------------------------------------------------------------------------- /messaging/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/common.h -------------------------------------------------------------------------------- /messaging/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /messaging/src/ios/fake/FIRMessaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/ios/fake/FIRMessaging.h -------------------------------------------------------------------------------- /messaging/src/ios/messaging.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/ios/messaging.mm -------------------------------------------------------------------------------- /messaging/src/listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/listener.cc -------------------------------------------------------------------------------- /messaging/src/stub/messaging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/src/stub/messaging.cc -------------------------------------------------------------------------------- /messaging/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/tests/CMakeLists.txt -------------------------------------------------------------------------------- /messaging/tests/messaging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/tests/messaging_test.cc -------------------------------------------------------------------------------- /messaging/tests/messaging_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/messaging/tests/messaging_test_util.h -------------------------------------------------------------------------------- /performance/example_usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/example_usage.cc -------------------------------------------------------------------------------- /performance/src/android/trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/android/trace.cc -------------------------------------------------------------------------------- /performance/src/http_metric_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/http_metric_test.cc -------------------------------------------------------------------------------- /performance/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /performance/src/ios/http_metric.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/ios/http_metric.mm -------------------------------------------------------------------------------- /performance/src/ios/trace.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/ios/trace.mm -------------------------------------------------------------------------------- /performance/src/performance_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/performance_common.cc -------------------------------------------------------------------------------- /performance/src/performance_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/performance_common.h -------------------------------------------------------------------------------- /performance/src/performance_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/performance_test.cc -------------------------------------------------------------------------------- /performance/src/trace_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src/trace_test.cc -------------------------------------------------------------------------------- /performance/src_ios/fake/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /performance/src_ios/fake/FIRTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src_ios/fake/FIRTrace.h -------------------------------------------------------------------------------- /performance/src_ios/fake/FIRTrace.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/src_ios/fake/FIRTrace.mm -------------------------------------------------------------------------------- /performance/stubs/http_metric_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/stubs/http_metric_stub.cc -------------------------------------------------------------------------------- /performance/stubs/performance_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/stubs/performance_stub.cc -------------------------------------------------------------------------------- /performance/stubs/trace_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/performance/stubs/trace_stub.cc -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /release_build_files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/release_build_files/CMakeLists.txt -------------------------------------------------------------------------------- /release_build_files/NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/release_build_files/NOTICES -------------------------------------------------------------------------------- /release_build_files/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/release_build_files/readme.md -------------------------------------------------------------------------------- /remote_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/CMakeLists.txt -------------------------------------------------------------------------------- /remote_config/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/build.gradle -------------------------------------------------------------------------------- /remote_config/src/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/cleanup.h -------------------------------------------------------------------------------- /remote_config/src/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/common.cc -------------------------------------------------------------------------------- /remote_config/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/common.h -------------------------------------------------------------------------------- /remote_config/src/desktop/metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/desktop/metadata.cc -------------------------------------------------------------------------------- /remote_config/src/desktop/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/desktop/metadata.h -------------------------------------------------------------------------------- /remote_config/src/desktop/request.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/desktop/request.fbs -------------------------------------------------------------------------------- /remote_config/src/desktop/rest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/desktop/rest.cc -------------------------------------------------------------------------------- /remote_config/src/desktop/rest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/desktop/rest.h -------------------------------------------------------------------------------- /remote_config/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /remote_config/src/remote_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/src/remote_config.cc -------------------------------------------------------------------------------- /remote_config/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/remote_config/tests/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/decrypt_gha_secret.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/decrypt_gha_secret.sh -------------------------------------------------------------------------------- /scripts/format_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/format_code.py -------------------------------------------------------------------------------- /scripts/gha-encrypted/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha-encrypted/README -------------------------------------------------------------------------------- /scripts/gha/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 Google LLC 2 | 3 | -------------------------------------------------------------------------------- /scripts/gha/build_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/build_desktop.py -------------------------------------------------------------------------------- /scripts/gha/build_ios_tvos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/build_ios_tvos.py -------------------------------------------------------------------------------- /scripts/gha/build_testapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/build_testapps.py -------------------------------------------------------------------------------- /scripts/gha/check_copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/check_copyright.sh -------------------------------------------------------------------------------- /scripts/gha/create_pull_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/create_pull_request.py -------------------------------------------------------------------------------- /scripts/gha/desktop_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/desktop_tester.py -------------------------------------------------------------------------------- /scripts/gha/dismiss_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/dismiss_reviews.py -------------------------------------------------------------------------------- /scripts/gha/firebase_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/firebase_github.py -------------------------------------------------------------------------------- /scripts/gha/gcs_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/gcs_uploader.py -------------------------------------------------------------------------------- /scripts/gha/integration_testing/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 Google LLC 2 | 3 | -------------------------------------------------------------------------------- /scripts/gha/integration_testing/gameloop_android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "gameloop" 3 | -------------------------------------------------------------------------------- /scripts/gha/it_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/it_workflow.py -------------------------------------------------------------------------------- /scripts/gha/lint_commenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/lint_commenter.py -------------------------------------------------------------------------------- /scripts/gha/pr_file_commenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/pr_file_commenter.py -------------------------------------------------------------------------------- /scripts/gha/python_requirements.txt: -------------------------------------------------------------------------------- 1 | attrs 2 | absl-py 3 | pytz 4 | requests 5 | retry 6 | -------------------------------------------------------------------------------- /scripts/gha/read_ftl_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/read_ftl_test_result.py -------------------------------------------------------------------------------- /scripts/gha/report_build_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/report_build_status.py -------------------------------------------------------------------------------- /scripts/gha/restore_secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/restore_secrets.py -------------------------------------------------------------------------------- /scripts/gha/retry_test_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/retry_test_failures.py -------------------------------------------------------------------------------- /scripts/gha/summarize_test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/summarize_test_results.py -------------------------------------------------------------------------------- /scripts/gha/test_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/test_simulator.py -------------------------------------------------------------------------------- /scripts/gha/trigger_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/trigger_workflow.py -------------------------------------------------------------------------------- /scripts/gha/ui_testing/uitest_android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "UI Test" 3 | -------------------------------------------------------------------------------- /scripts/gha/update_issue_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/update_issue_comment.py -------------------------------------------------------------------------------- /scripts/gha/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/gha/utils.py -------------------------------------------------------------------------------- /scripts/git/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/git/hooks/pre-commit -------------------------------------------------------------------------------- /scripts/merge_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/merge_libraries.py -------------------------------------------------------------------------------- /scripts/merge_libraries_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/merge_libraries_test.py -------------------------------------------------------------------------------- /scripts/merge_libraries_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/merge_libraries_test.sh -------------------------------------------------------------------------------- /scripts/merge_libraries_test_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/merge_libraries_test_file.cc -------------------------------------------------------------------------------- /scripts/print_allowed_namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/scripts/print_allowed_namespaces.py -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/settings.gradle -------------------------------------------------------------------------------- /setup_integration_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/setup_integration_tests.py -------------------------------------------------------------------------------- /storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/CMakeLists.txt -------------------------------------------------------------------------------- /storage/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/build.gradle -------------------------------------------------------------------------------- /storage/integration_test/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/Info.plist -------------------------------------------------------------------------------- /storage/integration_test/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/Podfile -------------------------------------------------------------------------------- /storage/integration_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/build.gradle -------------------------------------------------------------------------------- /storage/integration_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/gradlew -------------------------------------------------------------------------------- /storage/integration_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/gradlew.bat -------------------------------------------------------------------------------- /storage/integration_test/proguard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/proguard.pro -------------------------------------------------------------------------------- /storage/integration_test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/integration_test/readme.md -------------------------------------------------------------------------------- /storage/src/android/storage_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/android/storage_android.h -------------------------------------------------------------------------------- /storage/src/common/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/common.cc -------------------------------------------------------------------------------- /storage/src/common/common_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/common_internal.h -------------------------------------------------------------------------------- /storage/src/common/controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/controller.cc -------------------------------------------------------------------------------- /storage/src/common/listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/listener.cc -------------------------------------------------------------------------------- /storage/src/common/metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/metadata.cc -------------------------------------------------------------------------------- /storage/src/common/storage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/common/storage.cc -------------------------------------------------------------------------------- /storage/src/desktop/curl_requests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/curl_requests.cc -------------------------------------------------------------------------------- /storage/src/desktop/curl_requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/curl_requests.h -------------------------------------------------------------------------------- /storage/src/desktop/rest_operation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/rest_operation.cc -------------------------------------------------------------------------------- /storage/src/desktop/rest_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/rest_operation.h -------------------------------------------------------------------------------- /storage/src/desktop/storage_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/storage_desktop.h -------------------------------------------------------------------------------- /storage/src/desktop/storage_path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/storage_path.cc -------------------------------------------------------------------------------- /storage/src/desktop/storage_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/desktop/storage_path.h -------------------------------------------------------------------------------- /storage/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /storage/src/ios/controller_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/controller_ios.h -------------------------------------------------------------------------------- /storage/src/ios/controller_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/controller_ios.mm -------------------------------------------------------------------------------- /storage/src/ios/listener_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/listener_ios.h -------------------------------------------------------------------------------- /storage/src/ios/listener_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/listener_ios.mm -------------------------------------------------------------------------------- /storage/src/ios/metadata_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/metadata_ios.h -------------------------------------------------------------------------------- /storage/src/ios/metadata_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/metadata_ios.mm -------------------------------------------------------------------------------- /storage/src/ios/storage_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/storage_ios.h -------------------------------------------------------------------------------- /storage/src/ios/storage_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/storage_ios.mm -------------------------------------------------------------------------------- /storage/src/ios/util_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/util_ios.h -------------------------------------------------------------------------------- /storage/src/ios/util_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/ios/util_ios.mm -------------------------------------------------------------------------------- /storage/src/stub/listener_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/src/stub/listener_stub.h -------------------------------------------------------------------------------- /storage/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/storage/tests/CMakeLists.txt -------------------------------------------------------------------------------- /test_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_android.sh -------------------------------------------------------------------------------- /test_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_linux.sh -------------------------------------------------------------------------------- /test_mac_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_mac_ios.sh -------------------------------------------------------------------------------- /test_mac_ios_simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_mac_ios_simulator.sh -------------------------------------------------------------------------------- /test_mac_x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_mac_x64.sh -------------------------------------------------------------------------------- /test_windows_x32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_windows_x32.bat -------------------------------------------------------------------------------- /test_windows_x64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/test_windows_x64.bat -------------------------------------------------------------------------------- /testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/TickerExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/TickerExample.java -------------------------------------------------------------------------------- /testing/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/build.gradle -------------------------------------------------------------------------------- /testing/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config.cc -------------------------------------------------------------------------------- /testing/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config.h -------------------------------------------------------------------------------- /testing/config_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_android.cc -------------------------------------------------------------------------------- /testing/config_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_desktop.cc -------------------------------------------------------------------------------- /testing/config_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_desktop.h -------------------------------------------------------------------------------- /testing/config_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_ios.h -------------------------------------------------------------------------------- /testing/config_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_ios.mm -------------------------------------------------------------------------------- /testing/config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/config_test.cc -------------------------------------------------------------------------------- /testing/json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/json_util.cc -------------------------------------------------------------------------------- /testing/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/json_util.h -------------------------------------------------------------------------------- /testing/reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter.cc -------------------------------------------------------------------------------- /testing/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter.h -------------------------------------------------------------------------------- /testing/reporter_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_android.cc -------------------------------------------------------------------------------- /testing/reporter_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_impl.cc -------------------------------------------------------------------------------- /testing/reporter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_impl.h -------------------------------------------------------------------------------- /testing/reporter_impl_fake.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_impl_fake.cc -------------------------------------------------------------------------------- /testing/reporter_impl_fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_impl_fake.h -------------------------------------------------------------------------------- /testing/reporter_impl_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_impl_test.cc -------------------------------------------------------------------------------- /testing/reporter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/reporter_test.cc -------------------------------------------------------------------------------- /testing/run_all_tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/run_all_tests.cc -------------------------------------------------------------------------------- /testing/run_all_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/run_all_tests.h -------------------------------------------------------------------------------- /testing/run_all_tests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/run_all_tests.mm -------------------------------------------------------------------------------- /testing/templates/Activity.java.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/templates/Activity.java.tmpl -------------------------------------------------------------------------------- /testing/templates/JavaTest.java.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/templates/JavaTest.java.tmpl -------------------------------------------------------------------------------- /testing/test_framework/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /testing/testdata_config.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/testdata_config.fbs -------------------------------------------------------------------------------- /testing/testdata_config_android.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/testdata_config_android.fbs -------------------------------------------------------------------------------- /testing/ticker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker.h -------------------------------------------------------------------------------- /testing/ticker_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker_android.cc -------------------------------------------------------------------------------- /testing/ticker_desktop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker_desktop.cc -------------------------------------------------------------------------------- /testing/ticker_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker_desktop.h -------------------------------------------------------------------------------- /testing/ticker_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker_ios.h -------------------------------------------------------------------------------- /testing/ticker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/ticker_test.cc -------------------------------------------------------------------------------- /testing/util_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_android.cc -------------------------------------------------------------------------------- /testing/util_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_android.h -------------------------------------------------------------------------------- /testing/util_android_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_android_test.cc -------------------------------------------------------------------------------- /testing/util_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_ios.h -------------------------------------------------------------------------------- /testing/util_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_ios.mm -------------------------------------------------------------------------------- /testing/util_ios_test.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testing/util_ios_test.mm -------------------------------------------------------------------------------- /testlab/src/android/testlab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/android/testlab.cc -------------------------------------------------------------------------------- /testlab/src/android/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/android/util.cc -------------------------------------------------------------------------------- /testlab/src/android/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/android/util.h -------------------------------------------------------------------------------- /testlab/src/common/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/common/common.cc -------------------------------------------------------------------------------- /testlab/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/common/common.h -------------------------------------------------------------------------------- /testlab/src/desktop/testlab_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/desktop/testlab_macos.h -------------------------------------------------------------------------------- /testlab/src/desktop/testlab_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/desktop/testlab_macos.mm -------------------------------------------------------------------------------- /testlab/src/ios/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /testlab/src/ios/custom_results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/ios/custom_results.h -------------------------------------------------------------------------------- /testlab/src/ios/custom_results.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/ios/custom_results.mm -------------------------------------------------------------------------------- /testlab/src/ios/testlab.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/testlab/src/ios/testlab.mm -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/version.sh -------------------------------------------------------------------------------- /version_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/version_header.py -------------------------------------------------------------------------------- /version_header_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahnshy/firebase-cpp-sdk/HEAD/version_header_test.py --------------------------------------------------------------------------------