Skip to content
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
5 changes: 3 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
task:
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true' && $CIRRUS_PR == ''
container:
dockerfile: .ci/Dockerfile
dockerfile: .ci/Dockerfile
cpu: 4
memory: 8G
upgrade_script:
Expand All @@ -11,7 +11,8 @@ task:
activate_script: pub global activate flutter_plugin_tools
matrix:
- name: analyze
script: ./script/incremental_build.sh analyze
# TODO(goderbauer): remove custom-analysis once fuchsia_ctl and gauge have proper API docs.
script: ./script/incremental_build.sh analyze --custom-analysis fuchsia_ctl,gauge
- name: publishable
script: ./script/check_publish.sh
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 27
compileSdkVersion 28

lintOptions {
disable 'InvalidPackage'
Expand Down
1 change: 0 additions & 1 deletion packages/palette_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: palette_generator
description: Flutter package for generating palette colors from a source image.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/packages/tree/master/packages/palette_generator
version: 0.2.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class FakeImageProvider extends ImageProvider<FakeImageProvider> {
}

@override
ImageStreamCompleter load(FakeImageProvider key) {
ImageStreamCompleter load(FakeImageProvider key, DecoderCallback decode) {
assert(key == this);
return OneFrameImageStreamCompleter(
SynchronousFuture<ImageInfo>(
Expand Down