Skip to content

Commit fdd6aa7

Browse files
committed
feat: update authentication to latest versions
1 parent d2be859 commit fdd6aa7

File tree

17 files changed

+324
-1079
lines changed

17 files changed

+324
-1079
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,9 @@ analytics/macos/firebase_app_id_file.json
5151
analytics/macos/Runner/GoogleService-Info.plist
5252
analytics/lib/firebase_options.dart
5353
dynamic_links/lib/firebase_options.dart
54+
55+
# ignore firebase_options.dart for all examples
56+
**/firebase_options.dart
57+
58+
# ignore .firebaserc for all examples
59+
**/.firebaserc

authentication/.firebaserc

Lines changed: 0 additions & 5 deletions
This file was deleted.

authentication/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ app.*.map.json
4444
/android/app/debug
4545
/android/app/profile
4646
/android/app/release
47+
/ios/firebase_app_id_file.json
48+
/ios/Runner/GoogleService-Info.plist
49+
/android/app/google-services.json

authentication/README.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,50 @@
1-
Firebase Auth Quickstart
2-
==============================
1+
# Firebase Auth Quickstart
32

4-
Introduction
5-
------------
3+
## Introduction
64

75
- [Read more about Firebase Auth](https://firebase.google.com)
86

9-
Getting Started
10-
---------------
7+
## Getting Started
118

129
- [Add Firebase to your Flutter Project](https://firebase.google.com/docs/flutter/setup).
1310

14-
This example contains Email / Password login and signup using Firebase in a
15-
Flutter app. In order to run the example, you'll need to set up your app in
11+
This example contains Email / Password login and signup using Firebase in a
12+
Flutter app. In order to run the example, you'll need to set up your app in
1613
the Firebase console. You will then want to run the flutterfire_cli to
1714
sync all API keys locally to this application.
1815

16+
- Run `firebase emulators:start` to start the local Firebase emulator suite.
17+
18+
- Run `flutter run` to start the app.
19+
1920
### Email/Password Setup
2021

2122
- Go to the [Firebase Console][fir-console] and navigate to your project:
22-
- Select the **Auth** panel and then click the **Sign In Method** tab.
23-
- Click **Email/Password** and turn on the **Enable** switch, then click **Save**.
24-
- Under **Authorized Domains** click **Add Domain** and add `auth.example.com`.
23+
- Select the **Auth** panel and then click the **Sign In Method** tab.
24+
- Click **Email/Password** and turn on the **Enable** switch, then click **Save**.
2525

26-
Support
27-
-------
26+
## Support
2827

2928
- [Stack Overflow](https://stackoverflow.com/questions/tagged/firebase-authentication)
3029
- [Firebase Support](https://firebase.google.com/support/)
3130

32-
License
33-
-------
31+
## License
3432

3533
Copyright 2022 Google, Inc.
3634

3735
Licensed to the Apache Software Foundation (ASF) under one or more contributor
38-
license agreements. See the NOTICE file distributed with this work for
39-
additional information regarding copyright ownership. The ASF licenses this
36+
license agreements. See the NOTICE file distributed with this work for
37+
additional information regarding copyright ownership. The ASF licenses this
4038
file to you under the Apache License, Version 2.0 (the "License"); you may not
41-
use this file except in compliance with the License. You may obtain a copy of
39+
use this file except in compliance with the License. You may obtain a copy of
4240
the License at
4341

4442
http://www.apache.org/licenses/LICENSE-2.0
4543

4644
Unless required by applicable law or agreed to in writing, software
4745
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
48-
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
46+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
4947
License for the specific language governing permissions and limitations under
5048
the License.
5149

52-
[fir-console]: https://console.firebase.google.com
50+
[fir-console]: https://console.firebase.google.com

0 commit comments

Comments
 (0)