Skip to content

Commit 3747726

Browse files
authored
refactor: replace altfire packages (#621)
* refactor: replace altfire packages - altfire_authenticator -> packages/core/authenticator - altfire_configurator -> packages/core/configurator - altfire_messenger-> packages/core/messenger - altfire_tracker -> packages/core/tracker and - update Flutter to 3.35.6 - create analysis_options.yaml on root * build: increase min OS to iOS 15.0 and Android API level 24
1 parent f6640bb commit 3747726

File tree

99 files changed

+4313
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+4313
-421
lines changed

.fvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"flutter": "3.35.3"
2+
"flutter": "3.35.6"
33
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
}
6060
},
6161
"dart.flutterGenerateLocalizationsOnSave": "all",
62-
"dart.flutterSdkPath": ".fvm/versions/3.35.3",
62+
"dart.flutterSdkPath": ".fvm/versions/3.35.6",
6363
"dart.debugExternalPackageLibraries": false,
6464
"dart.debugSdkLibraries": false,
6565
"dart.experimentalRefactors": true,

analysis_options.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
include: package:altive_lints/altive_lints.yaml
2+
3+
analyzer:
4+
plugins:
5+
- custom_lint
6+
exclude:
7+
- "**/gen/*.dart"
8+
- "**/firebase_options_*.dart"
9+
- "**/*.g.dart"
10+
- "**/*.freezed.dart"
11+
12+
linter:
13+
rules:
14+
15+
custom_lint:
16+
rules:
17+
- avoid_hardcoded_color: false
18+
- avoid_hardcoded_japanese: false
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
include: package:altive_lints/altive_lints.yaml
2-
analyzer:
3-
plugins:
4-
- custom_lint
1+
include: ../../analysis_options.yaml
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
migrate_working_dir/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# The .vscode folder contains launch configuration and tasks you configure in
20+
# VS Code which you may wish to be included in version control, so this line
21+
# is commented out by default.
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26+
/pubspec.lock
27+
**/doc/api/
28+
.dart_tool/
29+
.flutter-plugins-dependencies
30+
/build/
31+
/coverage/
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "a402d9a4376add5bc2d6b1e33e53edaae58c07f8"
8+
channel: "stable"
9+
10+
project_type: package
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
- initial release.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Authenticator
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include: ../../../analysis_options.yaml
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/// authenticator with FlutterFire Authentication.
2+
library;
3+
4+
export 'package:firebase_auth/firebase_auth.dart'
5+
show
6+
AuthCredential,
7+
OAuthCredential,
8+
OAuthProvider,
9+
PhoneAuthProvider,
10+
User,
11+
UserCredential;
12+
13+
export 'src/auth_exception.dart';
14+
export 'src/authenticator.dart';
15+
export 'src/signing_method.dart';
16+
export 'src/user_extension.dart';

0 commit comments

Comments
 (0)