diff --git a/example/lib/main.dart b/example/lib/main.dart index fd051afc..9eee4db0 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -69,7 +69,8 @@ void main() async { final client = Client( 's2dxdhpxd94g', logLevel: Level.INFO, - showLocalNotification: (m, c) {}, + showLocalNotification: + (!kIsWeb && Platform.isAndroid) ? showLocalNotification : null, persistenceEnabled: true, ); diff --git a/example/pubspec.yaml b/example/pubspec.yaml index abed021e..0ba6b827 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.0.25+26 +version: 1.0.26+27 environment: sdk: ">=2.2.2 <3.0.0"