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

Commit 675603d

Browse files
committed
Merge remote-tracking branch 'upstream/master' into iap/app_facing_add_cancel_status
2 parents 8fcdc46 + 355d51b commit 675603d

File tree

545 files changed

+9765
-3459
lines changed

Some content is hidden

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

545 files changed

+9765
-3459
lines changed

.ci.yaml

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,6 @@ targets:
4848
]
4949
scheduler: luci
5050

51-
- name: Windows win32-platform_tests main
52-
bringup: true
53-
recipe: plugins/plugins
54-
timeout: 30
55-
properties:
56-
add_recipes_cq: "true"
57-
target_file: windows_build_and_platform_tests.yaml
58-
channel: main
59-
dependencies: >
60-
[
61-
{"dependency": "vs_build"}
62-
]
63-
scheduler: luci
64-
6551
- name: Windows win32-platform_tests stable
6652
recipe: plugins/plugins
6753
timeout: 30
@@ -87,20 +73,6 @@ targets:
8773
]
8874
scheduler: luci
8975

90-
- name: Windows windows-build_all_plugins main
91-
bringup: true
92-
recipe: plugins/plugins
93-
timeout: 30
94-
properties:
95-
add_recipes_cq: "true"
96-
target_file: build_all_plugins.yaml
97-
channel: main
98-
dependencies: >
99-
[
100-
{"dependency": "vs_build"}
101-
]
102-
scheduler: luci
103-
10476
- name: Windows windows-build_all_plugins stable
10577
recipe: plugins/plugins
10678
timeout: 30
@@ -126,20 +98,6 @@ targets:
12698
]
12799
scheduler: luci
128100

129-
- name: Windows uwp-platform_tests main
130-
bringup: true
131-
recipe: plugins/plugins
132-
timeout: 30
133-
properties:
134-
add_recipes_cq: "true"
135-
target_file: uwp_build_and_platform_tests.yaml
136-
channel: main
137-
dependencies: >
138-
[
139-
{"dependency": "vs_build"}
140-
]
141-
scheduler: luci
142-
143101
- name: Windows plugin_tools_tests
144102
recipe: plugins/plugins
145103
timeout: 30

.cirrus.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,16 @@ task:
7575
CHANGE_DESC: "$TMPDIR/change-description.txt"
7676
version_check_script:
7777
# For pre-submit, pass the PR description to the script to allow for
78-
# platform version breaking version change justifications.
79-
# For post-submit, ignore platform version breaking version changes.
80-
# The PR description isn't reliably part of the commit message, so using
81-
# the same flags as for presubmit would likely result in false-positive
82-
# post-submit failures.
78+
# version check overrides.
79+
# For post-submit, ignore platform version breaking version changes and
80+
# missing version/CHANGELOG detection; the PR description isn't reliably
81+
# part of the commit message, so using the same flags as for presubmit
82+
# would likely result in false-positive post-submit failures.
8383
- if [[ $CIRRUS_PR == "" ]]; then
8484
- ./script/tool_runner.sh version-check --ignore-platform-interface-breaks
8585
- else
8686
- echo "$CIRRUS_CHANGE_MESSAGE" > "$CHANGE_DESC"
87-
- ./script/tool_runner.sh version-check --change-description-file="$CHANGE_DESC"
87+
- ./script/tool_runner.sh version-check --check-for-missing-changes --change-description-file="$CHANGE_DESC"
8888
- fi
8989
publish_check_script: ./script/tool_runner.sh publish-check
9090
- name: format

.github/labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@
8585

8686
'platform-ios':
8787
- packages/*/*_ios/**/*
88+
- packages/*/*_storekit/**/*
89+
- packages/*/*_wkwebview/**/*
8890
- packages/**/ios/**/*
8991

9092
'platform-linux':

analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ analyzer:
5757
- '**/*.g.dart'
5858
- 'lib/src/generated/*.dart'
5959
- '**/*.mocks.dart' # Mockito @GenerateMocks
60+
- '**/*.pigeon.dart' # Pigeon generated file
6061

6162
linter:
6263
rules:

analysis_options_legacy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ analyzer:
55
- '**/*.g.dart'
66
- 'lib/src/generated/*.dart'
77
- '**/*.mocks.dart' # Mockito @GenerateMocks
8+
- '**/*.pigeon.dart' # Pigeon generated file
89
errors:
910
always_require_non_null_named_parameters: false # not needed with nnbd
1011
# TODO(https://github.com/flutter/flutter/issues/74381):

packages/android_alarm_manager/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Remove support for the V1 Android embedding.
44
* Updated Android lint settings.
55
* Removed `-Werror` in Android builds.
6+
* Updates compileSdkVersion to 31.
67

78
## 2.0.2
89

packages/android_alarm_manager/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ project.getTasks().withType(JavaCompile){
2727
apply plugin: 'com.android.library'
2828

2929
android {
30-
compileSdkVersion 29
30+
compileSdkVersion 31
3131
defaultConfig {
3232
minSdkVersion 16
3333
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

packages/android_alarm_manager/example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ apply plugin: 'com.android.application'
2525
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2626

2727
android {
28-
compileSdkVersion 29
28+
compileSdkVersion 31
2929

3030
lintOptions {
3131
disable 'InvalidPackage'
3232
}
3333

3434
defaultConfig {
3535
applicationId "io.flutter.plugins.androidalarmmanagerexample"
36-
minSdkVersion 16
36+
minSdkVersion 21
3737
targetSdkVersion 28
3838
versionCode flutterVersionCode.toInteger()
3939
versionName flutterVersionName

packages/android_intent/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Updated Android lint settings.
55
* Specify Java 8 for Android build.
66
* Removed `-Werror` in Android builds.
7+
* Updates compileSdkVersion to 31.
78

89
## 2.0.2
910

packages/android_intent/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ project.getTasks().withType(JavaCompile){
2727
apply plugin: 'com.android.library'
2828

2929
android {
30-
compileSdkVersion 29
30+
compileSdkVersion 31
3131

3232
defaultConfig {
3333
minSdkVersion 16

0 commit comments

Comments
 (0)