Skip to content

Commit

Permalink
bumped to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludwig committed Oct 29, 2018
1 parent e4d40d6 commit 7b6462a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0.5"
versionName "1.0.6"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs {
Expand Down
8 changes: 4 additions & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'dart:async';

import 'package:flutter/material.dart';
import 'package:navis/blocs/provider.dart';
import 'package:navis/blocs/worldstate_bloc.dart';
Expand All @@ -11,9 +9,11 @@ void main() async {
final state = WorldstateBloc();
final exceptionService = ExceptionService();

runZoned(
/*runZoned(
() =>
runApp(BlocProvider<WorldstateBloc>(bloc: state, child: Navis())),
onError: (error, stackTrace) async =>
await exceptionService.reportErrorAndStackTrace(error, stackTrace));
await exceptionService.reportErrorAndStackTrace(error, stackTrace));*/

runApp(BlocProvider<WorldstateBloc>(bloc: state, child: Navis()));
}

0 comments on commit 7b6462a

Please sign in to comment.