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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ apply_standard_settings(${PLUGIN_NAME})
set_target_properties(${PLUGIN_NAME} PROPERTIES
CXX_VISIBILITY_PRESET hidden)
target_compile_definitions(${PLUGIN_NAME} PUBLIC FLUTTER_PLUGIN_IMPL)
# Enable firebase-cpp-sdk's platform logging api.
# Enable Firebase C++ SDK internal APIs used by App::RegisterLibrary.
target_compile_definitions(${PLUGIN_NAME} PRIVATE -DINTERNAL_EXPERIMENTAL=1)

# Source include directories and library dependencies. Add any plugin-specific
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include "firebase/app.h"
#include "firebase/auth.h"
#include "firebase/future.h"
#include "firebase/log.h"
#include "firebase/util.h"
#include "firebase/variant.h"
#include "firebase_auth/plugin_version.h"
Expand Down Expand Up @@ -65,9 +64,7 @@ void FirebaseAuthPlugin::RegisterWithRegistrar(
nullptr);
}

FirebaseAuthPlugin::FirebaseAuthPlugin() {
firebase::SetLogLevel(firebase::kLogLevelVerbose);
}
FirebaseAuthPlugin::FirebaseAuthPlugin() = default;

FirebaseAuthPlugin::~FirebaseAuthPlugin() = default;

Expand Down
Loading