Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.3+4

* Fix pedantic lints. This shouldn't affect existing functionality.

## 0.6.3+3

* README update.
Expand Down
10 changes: 0 additions & 10 deletions packages/share/analysis_options.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Future<void> main() async {
final FlutterDriver driver = await FlutterDriver.connect();
final String result =
await driver.requestData(null, timeout: const Duration(minutes: 1));
driver.close();
await driver.close();
exit(result == 'pass' ? 0 : 1);
}
2 changes: 1 addition & 1 deletion packages/share/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for sharing content via the platform share UI, using
the ACTION_SEND intent on Android and UIActivityViewController on iOS.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/plugins/tree/master/packages/share
version: 0.6.3+3
version: 0.6.3+4

flutter:
plugin:
Expand Down
2 changes: 1 addition & 1 deletion packages/share/test/share_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void main() {
// Re-pipe to mockito for easier verifies.
Share.channel.setMockMethodCallHandler((MethodCall call) async {
// The explicit type can be void as the only method call has a return type of void.
mockChannel.invokeMethod<void>(call.method, call.arguments);
await mockChannel.invokeMethod<void>(call.method, call.arguments);
});
});

Expand Down