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

Remove -Werror from deprecated plugin Android builds #4466

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/android_alarm_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Remove support for the V1 Android embedding.
* Updated Android lint settings.
* Removed `-Werror` in Android builds.

## 2.0.2

Expand Down
2 changes: 1 addition & 1 deletion packages/android_alarm_manager/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group 'io.flutter.plugins.androidalarmmanager'
version '1.0-SNAPSHOT'
def args = ["-Xlint:deprecation","-Xlint:unchecked","-Werror"]
def args = ["-Xlint:deprecation","-Xlint:unchecked"]

buildscript {
repositories {
Expand Down
1 change: 1 addition & 0 deletions packages/android_intent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Remove references to the V1 Android embedding.
* Updated Android lint settings.
* Specify Java 8 for Android build.
* Removed `-Werror` in Android builds.

## 2.0.2

Expand Down
2 changes: 1 addition & 1 deletion packages/android_intent/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group 'io.flutter.plugins.androidintent'
version '1.0-SNAPSHOT'
def args = ["-Xlint:deprecation","-Xlint:unchecked","-Werror"]
def args = ["-Xlint:deprecation","-Xlint:unchecked"]

buildscript {
repositories {
Expand Down
1 change: 1 addition & 0 deletions packages/connectivity/connectivity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Remove references to the Android V1 embedding.
* Updated Android lint settings.
* Specify Java 8 for Android build.
* Removed `-Werror` in Android builds.

## 3.0.6

Expand Down
2 changes: 1 addition & 1 deletion packages/connectivity/connectivity/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group 'io.flutter.plugins.connectivity'
version '1.0-SNAPSHOT'
def args = ["-Xlint:deprecation","-Xlint:unchecked","-Werror"]
def args = ["-Xlint:deprecation","-Xlint:unchecked"]

buildscript {
repositories {
Expand Down