File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
firebase_auth/firebase_auth/windows
firebase_core/firebase_core/windows Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1122,7 +1122,10 @@ void FirebaseAuthPlugin::UpdateEmail(
1122
1122
firebase::auth::Auth* firebaseAuth = GetAuthFromPigeon (app);
1123
1123
firebase::auth::User user = firebaseAuth->current_user ();
1124
1124
1125
+ #pragma warning(push)
1126
+ #pragma warning(disable : 4996)
1125
1127
firebase::Future<void > future = user.UpdateEmail (new_email.c_str ());
1128
+ #pragma warning(pop)
1126
1129
1127
1130
future.OnCompletion ([result, firebaseAuth](
1128
1131
const firebase::Future<void >& completed_future) {
Original file line number Diff line number Diff line change 4
4
# customers of the plugin.
5
5
cmake_minimum_required (VERSION 3.14 )
6
6
7
- set (FIREBASE_SDK_VERSION "11.6 .0" )
7
+ set (FIREBASE_SDK_VERSION "11.10 .0" )
8
8
9
9
if (EXISTS $ENV{FIREBASE_CPP_SDK_DIR} /include/firebase/version.h )
10
10
file (READ "$ENV{FIREBASE_CPP_SDK_DIR} /include/firebase/version.h" existing_version )
You can’t perform that action at this time.
0 commit comments