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

Commit f2bb3d8

Browse files
author
Chris Yang
committed
merge
2 parents c9c8193 + b1fb69e commit f2bb3d8

File tree

257 files changed

+3601
-177
lines changed

Some content is hidden

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

257 files changed

+3601
-177
lines changed

analysis_options.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
include: package:pedantic/analysis_options.1.8.0.yaml
22
analyzer:
3-
enable-experiment:
4-
- non-nullable
53
exclude:
64
# Ignore generated files
75
- '**/*.g.dart'

packages/android_alarm_manager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.5+15
2+
3+
* Update android compileSdkVersion to 29.
4+
15
## 0.4.5+14
26

37
* Keep handling deprecated Android v1 classes for backward compatibility.

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 28
30+
compileSdkVersion 29
3131
compileOptions {
3232
sourceCompatibility JavaVersion.VERSION_1_8
3333
targetCompatibility JavaVersion.VERSION_1_8

packages/android_alarm_manager/example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Demonstrates how to use the android_alarm_manager plugin.
55
## Getting Started
66

77
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
8+
[documentation](https://flutter.dev/).

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

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

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

3030
lintOptions {
3131
disable 'InvalidPackage'

packages/android_alarm_manager/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Flutter plugin for accessing the Android AlarmManager service, and
44
# 0.4.y+z is compatible with 1.0.0, if you land a breaking change bump
55
# the version to 2.0.0.
66
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7-
version: 0.4.5+14
7+
version: 0.4.5+15
88
homepage: https://github.com/flutter/plugins/tree/master/packages/android_alarm_manager
99

1010
dependencies:

packages/android_intent/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.7+6
2+
3+
* Update android compileSdkVersion to 29.
4+
15
## 0.3.7+5
26

37
* Android Code Inspection and Clean up.

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 28
30+
compileSdkVersion 29
3131

3232
defaultConfig {
3333
minSdkVersion 16

packages/android_intent/example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Demonstrates how to use the android_intent plugin.
55
## Getting Started
66

77
For help getting started with Flutter, view our online
8-
[documentation](http://flutter.io/).
8+
[documentation](https://flutter.dev/).

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

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

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

3030
lintOptions {
3131
disable 'InvalidPackage'

0 commit comments

Comments
 (0)