File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import Foundation
7
7
8
8
import connectivity_plus_macos
9
9
import device_info_plus_macos
10
+ import firebase_auth
10
11
import firebase_core
11
12
import package_info
12
13
import shared_preferences_macos
@@ -15,6 +16,7 @@ import url_launcher_macos
15
16
func RegisterGeneratedPlugins( registry: FlutterPluginRegistry ) {
16
17
ConnectivityPlugin . register ( with: registry. registrar ( forPlugin: " ConnectivityPlugin " ) )
17
18
DeviceInfoPlusMacosPlugin . register ( with: registry. registrar ( forPlugin: " DeviceInfoPlusMacosPlugin " ) )
19
+ FLTFirebaseAuthPlugin . register ( with: registry. registrar ( forPlugin: " FLTFirebaseAuthPlugin " ) )
18
20
FLTFirebaseCorePlugin . register ( with: registry. registrar ( forPlugin: " FLTFirebaseCorePlugin " ) )
19
21
FLTPackageInfoPlugin . register ( with: registry. registrar ( forPlugin: " FLTPackageInfoPlugin " ) )
20
22
SharedPreferencesPlugin . register ( with: registry. registrar ( forPlugin: " SharedPreferencesPlugin " ) )
Original file line number Diff line number Diff line change @@ -337,6 +337,27 @@ packages:
337
337
url: "https://pub.dartlang.org"
338
338
source: hosted
339
339
version: "6.1.2"
340
+ firebase_auth:
341
+ dependency: "direct main"
342
+ description:
343
+ name: firebase_auth
344
+ url: "https://pub.dartlang.org"
345
+ source: hosted
346
+ version: "3.4.1"
347
+ firebase_auth_platform_interface:
348
+ dependency: transitive
349
+ description:
350
+ name: firebase_auth_platform_interface
351
+ url: "https://pub.dartlang.org"
352
+ source: hosted
353
+ version: "6.3.1"
354
+ firebase_auth_web:
355
+ dependency: transitive
356
+ description:
357
+ name: firebase_auth_web
358
+ url: "https://pub.dartlang.org"
359
+ source: hosted
360
+ version: "3.3.19"
340
361
firebase_core:
341
362
dependency: "direct main"
342
363
description:
Original file line number Diff line number Diff line change @@ -72,6 +72,9 @@ dependencies:
72
72
# Flutter plugin for Firebase Core, enabling connecting to multiple Firebase apps.
73
73
firebase_core : ^1.19.1
74
74
75
+ # Flutter plugin for Firebase auth.
76
+ firebase_auth : ^3.4.1
77
+
75
78
dev_dependencies :
76
79
flutter_test :
77
80
sdk : flutter
You can’t perform that action at this time.
0 commit comments