Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 51c79fd

Browse files
authored
Merge branch 'main' into dependabot/gradle/packages/path_provider/path_provider_android/android/junit-junit-4.13.2
2 parents e773791 + 395dc14 commit 51c79fd

File tree

81 files changed

+212
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+212
-360
lines changed

.ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ platform_properties:
1313
properties:
1414
dependencies: >
1515
[
16-
{"dependency": "curl"}
16+
{"dependency": "curl", "version": "version:7.64.0"}
1717
]
1818
device_type: none
1919
os: Linux
2020
windows:
2121
properties:
2222
dependencies: >
2323
[
24-
{"dependency": "certs"}
24+
{"dependency": "certs", "version": "version:9563bb"}
2525
]
2626
device_type: none
2727
os: Windows
@@ -37,7 +37,7 @@ targets:
3737
version_file: flutter_master.version
3838
dependencies: >
3939
[
40-
{"dependency": "vs_build"}
40+
{"dependency": "vs_build", "version": "version:vs2019"}
4141
]
4242
4343
- name: Windows win32-platform_tests stable
@@ -49,7 +49,7 @@ targets:
4949
channel: stable
5050
dependencies: >
5151
[
52-
{"dependency": "vs_build"}
52+
{"dependency": "vs_build", "version": "version:vs2019"}
5353
]
5454
5555
- name: Windows windows-build_all_plugins master
@@ -62,7 +62,7 @@ targets:
6262
version_file: flutter_master.version
6363
dependencies: >
6464
[
65-
{"dependency": "vs_build"}
65+
{"dependency": "vs_build", "version": "version:vs2019"}
6666
]
6767
6868
- name: Windows windows-build_all_plugins stable
@@ -74,7 +74,7 @@ targets:
7474
channel: stable
7575
dependencies: >
7676
[
77-
{"dependency": "vs_build"}
77+
{"dependency": "vs_build", "version": "version:vs2019"}
7878
]
7979
8080
- name: Windows plugin_tools_tests

.ci/flutter_master.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
52c47e96a33df14a5f43216fa88cf2165ea4d659
1+
1b2ee411aa1389e74c7c2aada90bc468781532d2

.ci/scripts/prepare_tool.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# found in the LICENSE file.
55

66
# To set FETCH_HEAD for "git merge-base" to work
7-
git fetch origin master
7+
git fetch origin main
88

99
cd script/tool
1010
dart pub get

.cirrus.yml

-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ task:
8686
- dart pub run test
8787
- name: publishable
8888
env:
89-
# TODO (mvanbeusekom): Temporary override to "stable" because of failure on "master".
90-
# Remove override once https://github.com/dart-lang/pub/issues/3152 is resolved.
91-
CHANNEL: stable
9289
CHANGE_DESC: "$TMPDIR/change-description.txt"
9390
version_check_script:
9491
# For pre-submit, pass the PR description to the script to allow for

.github/PULL_REQUEST_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
If you need help, consider asking for advice on the #hackers-new channel on [Discord].
2222

2323
<!-- Links -->
24-
[Contributor Guide]: https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md
24+
[Contributor Guide]: https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md
2525
[Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene
26-
[relevant style guides]: https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md#style
26+
[relevant style guides]: https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md#style
2727
[CLA]: https://cla.developers.google.com/
2828
[flutter/tests]: https://github.com/flutter/tests
2929
[breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes
3030
[Discord]: https://github.com/flutter/flutter/wiki/Chat
3131
[pub versioning philosophy]: https://dart.dev/tools/pub/versioning
3232
[exempt from version changes]: https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#version-and-changelog-updates
3333
[following repository CHANGELOG style]: https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#changelog-style
34-
[the auto-formatter]: https://github.com/flutter/plugins/blob/master/script/tool/README.md#format-code
34+
[the auto-formatter]: https://github.com/flutter/plugins/blob/main/script/tool/README.md#format-code
3535
[test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to Flutter Plugins
22

3-
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/master)
3+
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/main)
44

55
_See also: [Flutter's code of conduct](https://github.com/flutter/flutter/blob/master/CODE_OF_CONDUCT.md)_
66

@@ -35,7 +35,7 @@ use, and use auto-formatters:
3535
- [C++](https://google.github.io/styleguide/cppguide.html) formatted with `clang-format`
3636
- **Note**: The Linux plugins generally follow idiomatic GObject-based C
3737
style. See [the engine style
38-
notes](https://github.com/flutter/engine/blob/master/CONTRIBUTING.md#style)
38+
notes](https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style)
3939
for more details, and exceptions.
4040
- [Java](https://google.github.io/styleguide/javaguide.html) formatted with
4141
`google-java-format`

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Flutter plugins
22

3-
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/master)
3+
[![Build Status](https://api.cirrus-ci.com/github/flutter/plugins.svg)](https://cirrus-ci.com/github/flutter/plugins/main)
44
[![Release Status](https://github.com/flutter/plugins/actions/workflows/release.yml/badge.svg)](https://github.com/flutter/plugins/actions/workflows/release.yml)
55

66
This repo is a companion repo to the main [flutter
@@ -34,7 +34,7 @@ is ready, you can [publish](https://flutter.dev/developing-packages/#publish) it
3434
to the [pub repository](https://pub.dev/).
3535

3636
If you wish to contribute a change to any of the existing plugins in this repo,
37-
please review our [contribution guide](https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md),
37+
please review our [contribution guide](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md),
3838
and send a [pull request](https://github.com/flutter/plugins/pulls).
3939

4040
## Plugins

packages/camera/camera/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For web integration details, see the
5959

6060
### Handling Lifecycle states
6161

62-
As of version [0.5.0](https://github.com/flutter/plugins/blob/master/packages/camera/CHANGELOG.md#050) of the camera plugin, lifecycle changes are no longer handled by the plugin. This means developers are now responsible to control camera resources when the lifecycle state is updated. Failure to do so might lead to unexpected behavior (for example as described in issue [#39109](https://github.com/flutter/flutter/issues/39109)). Handling lifecycle changes can be done by overriding the `didChangeAppLifecycleState` method like so:
62+
As of version [0.5.0](https://github.com/flutter/plugins/blob/main/packages/camera/CHANGELOG.md#050) of the camera plugin, lifecycle changes are no longer handled by the plugin. This means developers are now responsible to control camera resources when the lifecycle state is updated. Failure to do so might lead to unexpected behavior (for example as described in issue [#39109](https://github.com/flutter/flutter/issues/39109)). Handling lifecycle changes can be done by overriding the `didChangeAppLifecycleState` method like so:
6363

6464
<?code-excerpt "main.dart (AppLifecycle)"?>
6565
```dart

packages/camera/camera_web/lib/src/shims/dart_ui_fake.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ import 'dart:html' as html;
1111
// ignore_for_file: camel_case_types
1212

1313
/// Shim for web_ui engine.PlatformViewRegistry
14-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/ui.dart#L62
14+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/ui.dart#L62
1515
class platformViewRegistry {
1616
/// Shim for registerViewFactory
17-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/ui.dart#L72
17+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/ui.dart#L72
1818
static bool registerViewFactory(
1919
String viewTypeId, html.Element Function(int viewId) viewFactory) {
2020
return false;
2121
}
2222
}
2323

2424
/// Shim for web_ui engine.AssetManager.
25-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/src/engine/assets.dart#L12
25+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/assets.dart#L12
2626
class webOnlyAssetManager {
2727
/// Shim for getAssetUrl.
28-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/src/engine/assets.dart#L45
28+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/assets.dart#L45
2929
static String getAssetUrl(String asset) => '';
3030
}
3131

packages/camera/camera_windows/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.0+2
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 0.1.0+1
26

37
* Removes unnecessary imports.

packages/camera/camera_windows/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: camera_windows
22
description: A Flutter plugin for getting information about and controlling the camera on Windows.
3-
repository: https://github.com/flutter/plugins/tree/master/packages/camera/camera_windows
3+
repository: https://github.com/flutter/plugins/tree/main/packages/camera/camera_windows
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
5-
version: 0.1.0+1
5+
version: 0.1.0+2
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/e2e/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# e2e (deprecated)
22

3-
This package has been moved to [integration_test](https://github.com/flutter/plugins/tree/master/packages/integration_test).
3+
This package has been moved to [`integration_test` in the Flutter SDK](https://github.com/flutter/flutter/tree/master/packages/integration_test).

packages/espresso/android/src/main/java/androidx/test/espresso/flutter/internal/protocol/impl/DartVmService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* An implementation of the Espresso-Flutter testing protocol by using the testing APIs exposed by
4343
* Dart VM service protocol.
4444
*
45-
* @see <a href="https://github.com/dart-lang/sdk/blob/master/runtime/vm/service/service.md">Dart VM
45+
* @see <a href="https://github.com/dart-lang/sdk/blob/main/runtime/vm/service/service.md">Dart VM
4646
* Service Protocol</a>.
4747
*/
4848
public final class DartVmService implements FlutterTestingProtocol {

packages/espresso/android/src/main/java/androidx/test/espresso/flutter/internal/protocol/impl/GetVmResponse.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
/**
1717
* Represents a response of a <a
18-
* href="https://github.com/dart-lang/sdk/blob/master/runtime/vm/service/service.md#getvm">getVM()</a>
18+
* href="https://github.com/dart-lang/sdk/blob/main/runtime/vm/service/service.md#getvm">getVM()</a>
1919
* request.
2020
*/
2121
public class GetVmResponse {

packages/file_selector/file_selector_macos/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.8.2+2
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 0.8.2+1
26

37
* Removes unnecessary imports.

packages/file_selector/file_selector_macos/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: file_selector_macos
22
description: macOS implementation of the file_selector plugin.
3-
repository: https://github.com/flutter/plugins/tree/master/packages/file_selector/file_selector_macos
3+
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_macos
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
5-
version: 0.8.2+1
5+
version: 0.8.2+2
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/file_selector/file_selector_windows/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.8.2+2
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 0.8.2+1
26

37
* Removes unnecessary imports.

packages/file_selector/file_selector_windows/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: file_selector_windows
22
description: Windows implementation of the file_selector plugin.
3-
repository: https://github.com/flutter/plugins/tree/master/packages/file_selector/file_selector_windows
3+
repository: https://github.com/flutter/plugins/tree/main/packages/file_selector/file_selector_windows
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
5-
version: 0.8.2+1
5+
version: 0.8.2+2
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/google_maps_flutter/google_maps_flutter_web/lib/src/shims/dart_ui_fake.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ import 'dart:html' as html;
1111
// ignore_for_file: camel_case_types
1212

1313
/// Shim for web_ui engine.PlatformViewRegistry
14-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/ui.dart#L62
14+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/ui.dart#L62
1515
class platformViewRegistry {
1616
/// Shim for registerViewFactory
17-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/ui.dart#L72
17+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/ui.dart#L72
1818
static bool registerViewFactory(
1919
String viewTypeId, html.Element Function(int viewId) viewFactory) {
2020
return false;
2121
}
2222
}
2323

2424
/// Shim for web_ui engine.AssetManager.
25-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/src/engine/assets.dart#L12
25+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/assets.dart#L12
2626
class webOnlyAssetManager {
2727
/// Shim for getAssetUrl.
28-
/// https://github.com/flutter/engine/blob/master/lib/web_ui/lib/src/engine/assets.dart#L45
28+
/// https://github.com/flutter/engine/blob/main/lib/web_ui/lib/src/engine/assets.dart#L45
2929
static String getAssetUrl(String asset) => '';
3030
}
3131

packages/google_sign_in/google_sign_in/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.3.3
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 5.3.2
26

37
* Enables mocking models by changing overridden operator == parameter type from `dynamic` to `Object`.

packages/google_sign_in/google_sign_in/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ Future<void> _handleSignIn() async {
126126
## Example
127127

128128
Find the example wiring in the
129-
[Google sign-in example application](https://github.com/flutter/plugins/blob/master/packages/google_sign_in/google_sign_in/example/lib/main.dart).
129+
[Google sign-in example application](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart).

packages/google_sign_in/google_sign_in/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
33
for signing in with a Google account on Android and iOS.
44
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
6-
version: 5.3.2
6+
version: 5.3.3
77

88

99
environment:

packages/google_sign_in/google_sign_in_ios/ios/google_sign_in_ios.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Enables Google Sign-In in Flutter apps.
1111
s.homepage = 'https://github.com/flutter/plugins/tree/main/packages/google_sign_in'
1212
s.license = { :type => 'BSD', :file => '../LICENSE' }
1313
s.author = { 'Flutter Team' => '[email protected]' }
14-
s.source = { :http => 'https://github.com/flutter/plugins/tree/master/packages/google_sign_in/google_sign_in_ios' }
14+
s.source = { :http => 'https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_ios' }
1515
s.source_files = 'Classes/**/*.{h,m}'
1616
s.public_header_files = 'Classes/**/*.h'
1717
s.module_map = 'Classes/FLTGoogleSignInPlugin.modulemap'

packages/google_sign_in/google_sign_in_web/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.10.1+3
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 0.10.1+2
26

37
* Minor fixes for new analysis options.

packages/google_sign_in/google_sign_in_web/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,19 +79,19 @@ Future<void> _handleSignIn() async {
7979

8080
## Example
8181

82-
Find the example wiring in the [Google sign-in example application](https://github.com/flutter/plugins/blob/master/packages/google_sign_in/google_sign_in/example/lib/main.dart).
82+
Find the example wiring in the [Google sign-in example application](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/example/lib/main.dart).
8383

8484
## API details
8585

86-
See the [google_sign_in.dart](https://github.com/flutter/plugins/blob/master/packages/google_sign_in/google_sign_in/lib/google_sign_in.dart) for more API details.
86+
See the [google_sign_in.dart](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in/lib/google_sign_in.dart) for more API details.
8787

8888
## Contributions and Testing
8989

9090
Tests are crucial for contributions to this package. All new contributions should be reasonably tested.
9191

92-
**Check the [`test/README.md` file](https://github.com/flutter/plugins/blob/master/packages/google_sign_in/google_sign_in_web/test/README.md)** for more information on how to run tests on this package.
92+
**Check the [`test/README.md` file](https://github.com/flutter/plugins/blob/main/packages/google_sign_in/google_sign_in_web/test/README.md)** for more information on how to run tests on this package.
9393

94-
Contributions to this package are welcome. Read the [Contributing to Flutter Plugins](https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md) guide to get started.
94+
Contributions to this package are welcome. Read the [Contributing to Flutter Plugins](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md) guide to get started.
9595

9696
## Issues and feedback
9797

packages/google_sign_in/google_sign_in_web/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Flutter plugin for Google Sign-In, a secure authentication system
33
for signing in with a Google account on Android, iOS and Web.
44
repository: https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in_web
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_sign_in%22
6-
version: 0.10.1+2
6+
version: 0.10.1+3
77

88
environment:
99
sdk: ">=2.12.0 <3.0.0"

packages/in_app_purchase/in_app_purchase/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.5
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 3.0.4
26

37
* Minor fixes for new analysis options.

packages/in_app_purchase/in_app_purchase/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ which can be the App Store (on iOS) or Google Play (on Android).
1010
| **Support** | SDK 16+ | 9.0+ |
1111

1212
<p>
13-
<img src="https://github.com/flutter/plugins/blob/master/packages/in_app_purchase/in_app_purchase/doc/iap_ios.gif?raw=true"
13+
<img src="https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_ios.gif?raw=true"
1414
alt="An animated image of the iOS in-app purchase UI" height="400"/>
1515
&nbsp;&nbsp;&nbsp;&nbsp;
16-
<img src="https://github.com/flutter/plugins/blob/master/packages/in_app_purchase/in_app_purchase/doc/iap_android.gif?raw=true"
16+
<img src="https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/doc/iap_android.gif?raw=true"
1717
alt="An animated image of the Android in-app purchase UI" height="400"/>
1818
</p>
1919

@@ -41,7 +41,7 @@ your app with each store. Both stores have extensive guides:
4141
> to a particular store.
4242
4343
For a list of steps for configuring in-app purchases in both stores, see the
44-
[example app README](https://github.com/flutter/plugins/blob/master/packages/in_app_purchase/in_app_purchase/example/README.md).
44+
[example app README](https://github.com/flutter/plugins/blob/main/packages/in_app_purchase/in_app_purchase/example/README.md).
4545

4646
Once you've configured your in-app purchases in their respective stores, you
4747
can start using the plugin. Two basic options are available:
@@ -426,4 +426,4 @@ iosPlatformAddition.presentCodeRedemptionSheet();
426426
## Contributing to this plugin
427427
428428
If you would like to contribute to the plugin, check out our
429-
[contribution guide](https://github.com/flutter/plugins/blob/master/CONTRIBUTING.md).
429+
[contribution guide](https://github.com/flutter/plugins/blob/main/CONTRIBUTING.md).

packages/in_app_purchase/in_app_purchase/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: in_app_purchase
22
description: A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
33
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
5-
version: 3.0.4
5+
version: 3.0.5
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/in_app_purchase/in_app_purchase_android/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.2+7
2+
3+
* Updates references to the obsolete master branch.
4+
15
## 0.2.2+6
26

37
* Enables mocking models by changing overridden operator == parameter type from `dynamic` to `Object`.

0 commit comments

Comments
 (0)