Skip to content

Commit 7fd9f2b

Browse files
committed
Prepare for version 2.0.4
1 parent f31e513 commit 7fd9f2b

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.0.4
2+
3+
* Android: Depend on GMS base instead of location;
4+
* Android: Make a clear separation between Application lifecycle and methodchannel implementation;
5+
* Android: Added end-to-end tests.
6+
17
## 2.0.3+hotfix.1
28

39
* Android: Fix a possible null reference when the plugin is called from an App running in the background.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To use this plugin, add `google_api_availability` as a [dependency in your pubsp
1919

2020
```yaml
2121
dependencies:
22-
google_api_availability: ^2.0.3+hotfix.1
22+
google_api_availability: ^2.0.4
2323
```
2424
2525
> **NOTE:** There's a known issue with integrating plugins that use Swift into a Flutter project created with the Objective-C template. See issue [Flutter#16049](https://github.com/flutter/flutter/issues/16049) for help on integration.

example/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ packages:
104104
path: ".."
105105
relative: true
106106
source: path
107-
version: "2.0.3+hotfix.1"
107+
version: "2.0.4"
108108
image:
109109
dependency: transitive
110110
description:
@@ -174,7 +174,7 @@ packages:
174174
name: pub_semver
175175
url: "https://pub.dartlang.org"
176176
source: hosted
177-
version: "1.4.3"
177+
version: "1.4.4"
178178
quiver:
179179
dependency: transitive
180180
description:

example/test_driver/google_api_availability_e2e_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import 'dart:async';
22

33
import 'package:e2e/e2e_driver.dart' as e2e;
44

5-
Future<void> main() async => e2e.main();
5+
Future<void> main() async => e2e.main();

ios/google_api_availability.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Pod::Spec.new do |s|
55
s.name = 'google_api_availability'
6-
s.version = '2.0.3+hotfix.1'
6+
s.version = '2.0.4'
77
s.summary = 'A Flutter plugin to check the availability of Google Play Services on an Android device.'
88
s.description = <<-DESC
99
A Flutter plugin to check the availability of Google Play Services on an Android device.

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ packages:
167167
name: pub_semver
168168
url: "https://pub.dartlang.org"
169169
source: hosted
170-
version: "1.4.3"
170+
version: "1.4.4"
171171
quiver:
172172
dependency: transitive
173173
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: google_api_availability
22
description: A Flutter plugin to check the availability of Google Play Services on an Android device.
3-
version: 2.0.3+hotfix.1
3+
version: 2.0.4
44
homepage: https://github.com/baseflowit/flutter-google-api-availability
55

66
environment:

0 commit comments

Comments
 (0)