mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
6232ad555a
* added crashlytics * added firebase_options to CD * Version bump * added firebase_options to CI * timeout
12 lines
294 B
Dart
12 lines
294 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/environment.dart';
|
|
|
|
import 'application.dart';
|
|
import 'firebase.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await initializeFirebase();
|
|
|
|
runApp(const Application(Environment.prod()));
|
|
}
|