From 3c5eb7629b9c47854ba061a0f0abdc44bf195521 Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Mon, 14 Feb 2022 13:15:48 +0900 Subject: [PATCH] flutter stable 2.10.1 (#31) Updated to the flutter 2.10.1. See also: - https://github.com/sony/flutter-embedded-linux/releases/tag/ab46186b24 - https://github.com/flutter/flutter/tree/2.10.1 --- 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 64c05e3..d79f8ab 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 ?= "776efd2034d50af73e2876d703213601df384e88" +ENGINE_VERSION ?= "ab46186b246f5a36bd1f3f295d14a43abb1e2f38" ``` When creating a Flutter project, you will need to use the following version of the Flutter SDK. | Engine version | Flutter SDK version | | :-------------: | :-------------: | -| [776efd2034d50af73e2876d703213601df384e88](https://github.com/flutter/engine/commit/776efd2034d50af73e2876d703213601df384e88) | [2.10.0 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.10.0) | +| [ab46186b246f5a36bd1f3f295d14a43abb1e2f38](https://github.com/flutter/engine/commit/ab46186b246f5a36bd1f3f295d14a43abb1e2f38) | [2.10.1 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.10.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 55c38a6..dfe710f 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-2@3.8.10.chromium.23_bin" require gn-args-utils.inc -# Flutter 2.10.0 (stable channel) -ENGINE_VERSION ?= "776efd2034d50af73e2876d703213601df384e88" +# Flutter 2.10.1 (stable channel) +ENGINE_VERSION ?= "ab46186b246f5a36bd1f3f295d14a43abb1e2f38" PACKAGECONFIG ?= "release-mode" PACKAGECONFIG[debug-mode] = "--runtime-mode debug --unoptimized" PACKAGECONFIG[profile-mode] = "--runtime-mode profile --no-lto"