From 0105b3ec8d33a1858d8b5579941558e6f50b794f Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Fri, 17 Dec 2021 13:47:53 +0900 Subject: [PATCH] Update to flutter-2.8.1 (#26) --- README.md | 4 ++-- recipes-graphics/flutter-engine/flutter-engine.bb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb048ff..38c257d 100644 --- a/README.md +++ b/README.md @@ -68,14 +68,14 @@ The default build target is fixed to Linux and Arm64, and the Flutter Engine ver #### Flutter Engine version ``` -ENGINE_VERSION ?= "40a99c595137e4b2f5b2efa8ff343ea23c1e16b8" +ENGINE_VERSION ?= "890a5fca2e34db413be624fc83aeea8e61d42ce6" ``` When creating a Flutter project, you will need to use the following version of the Flutter SDK. | Engine version | Flutter SDK version | | :-------------: | :-------------: | -| [40a99c595137e4b2f5b2efa8ff343ea23c1e16b8](https://github.com/flutter/engine/commit/40a99c595137e4b2f5b2efa8ff343ea23c1e16b8) | [2.8.0 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.8.0) | +| [890a5fca2e34db413be624fc83aeea8e61d42ce6](https://github.com/flutter/engine/commit/890a5fca2e34db413be624fc83aeea8e61d42ce6) | [2.8.1 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.8.1) | If you want to change the version of the Flutter engine, change to the appropriate version of the Flutter SDK and add the following to `conf/local.conf`: ``` diff --git a/recipes-graphics/flutter-engine/flutter-engine.bb b/recipes-graphics/flutter-engine/flutter-engine.bb index ee64acd..1d8b2de 100644 --- a/recipes-graphics/flutter-engine/flutter-engine.bb +++ b/recipes-graphics/flutter-engine/flutter-engine.bb @@ -15,8 +15,8 @@ GN_TOOLS_PYTHON2_PATH ??= "bootstrap-3.8.0.chromium.8_bin/python/bin" require gn-args-utils.inc -# Flutter 2.8.0 (stable channel) -ENGINE_VERSION ?= "40a99c595137e4b2f5b2efa8ff343ea23c1e16b8" +# Flutter 2.8.1 (stable channel) +ENGINE_VERSION ?= "890a5fca2e34db413be624fc83aeea8e61d42ce6" PACKAGECONFIG ?= "release-mode" PACKAGECONFIG[debug-mode] = "--runtime-mode debug --unoptimized" PACKAGECONFIG[profile-mode] = "--runtime-mode profile --no-lto"