Skip to content

Commit 927477f

Browse files
committed
Merge branch 'master' into develop
2 parents a22f12a + f1d8b9a commit 927477f

File tree

7 files changed

+19
-15
lines changed

7 files changed

+19
-15
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ android/.settings/
3939
/dev/docs/pubspec.yaml
4040
/packages/flutter/coverage/
4141
version
42+
**/.flutter-plugins-dependencies
43+
**/ios/Flutter/flutter_export_environment.sh
4244

4345
# Flutter/Dart/Pub related
4446
**/doc/api/

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.3
2+
3+
* Android: Migrate to FlutterPlugin Android API (better support for Add-to-App);
4+
15
## 2.0.2
26

37
* Migrate to AndroidX

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.2
22+
google_api_availability: ^2.0.3
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: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ packages:
8080
path: ".."
8181
relative: true
8282
source: path
83-
version: "2.0.2"
83+
version: "2.0.3"
8484
image:
8585
dependency: transitive
8686
description:
@@ -109,13 +109,6 @@ packages:
109109
url: "https://pub.dartlang.org"
110110
source: hosted
111111
version: "1.6.4"
112-
pedantic:
113-
dependency: transitive
114-
description:
115-
name: pedantic
116-
url: "https://pub.dartlang.org"
117-
source: hosted
118-
version: "1.8.0+1"
119112
petitparser:
120113
dependency: transitive
121114
description:
@@ -176,7 +169,7 @@ packages:
176169
name: test_api
177170
url: "https://pub.dartlang.org"
178171
source: hosted
179-
version: "0.2.11"
172+
version: "0.2.15"
180173
typed_data:
181174
dependency: transitive
182175
description:
@@ -200,3 +193,4 @@ packages:
200193
version: "3.5.0"
201194
sdks:
202195
dart: ">=2.4.0 <3.0.0"
196+
flutter: ">=1.12.8 <2.0.0"

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.2'
6+
s.version = '2.0.3'
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ packages:
162162
name: test_api
163163
url: "https://pub.dartlang.org"
164164
source: hosted
165-
version: "0.2.11"
165+
version: "0.2.15"
166166
typed_data:
167167
dependency: transitive
168168
description:
@@ -186,3 +186,4 @@ packages:
186186
version: "3.5.0"
187187
sdks:
188188
dart: ">=2.4.0 <3.0.0"
189+
flutter: ">=1.12.8 <2.0.0"

pubspec.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
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.2
3+
version: 2.0.3
44
homepage: https://github.com/baseflowit/flutter-google-api-availability
55

66
environment:
77
sdk: ">=2.0.0 <3.0.0"
8+
flutter: ">=1.12.8 <2.0.0"
89

910
dependencies:
1011
flutter:
@@ -18,5 +19,7 @@ dev_dependencies:
1819

1920
flutter:
2021
plugin:
21-
androidPackage: com.baseflow.googleapiavailability
22-
pluginClass: GoogleApiAvailabilityPlugin
22+
platforms:
23+
android:
24+
package: com.baseflow.googleapiavailability
25+
pluginClass: GoogleApiAvailabilityPlugin

0 commit comments

Comments
 (0)