Skip to content

Commit

Permalink
Fixed init Logger
Browse files Browse the repository at this point in the history
  • Loading branch information
feelsoftware committed Jun 6, 2023
1 parent 88e38ce commit c2c772e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ import 'package:timeago/timeago.dart' as timeago;
void main() async {
WidgetsFlutterBinding.ensureInitialized();

// Crashlytics
await Logger.init();

// DB
final database = await AppDatabase.build();
final fileManager = FileManagerImpl();
Expand All @@ -27,9 +30,6 @@ void main() async {
// Fonts
GoogleFonts.config.allowRuntimeFetching = false;

// Crashlytics
await Logger.init();

runApp(SlideMixApp(
appDatabase: database,
fileManager: fileManager,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.1.5+10105
version: 1.1.6+10106

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit c2c772e

Please sign in to comment.