From 29a2fa6fad13e8935e13480a4400a9cc540223e5 Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Thu, 31 Mar 2022 10:31:22 +0900 Subject: [PATCH] Update for flutter 2.10.4 (#35) --- README.md | 4 ++-- recipes-graphics/flutter-embedded-linux/repository.inc | 3 +-- recipes-graphics/flutter-engine/flutter-engine.bb | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 34d6ba6..918f32d 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 ?= "bd539267b42051b0da3d16ffa8f48949dce8aa8f" +ENGINE_VERSION ?= "57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab" ``` When creating a Flutter project, you will need to use the following version of the Flutter SDK. | Engine version | Flutter SDK version | | :-------------: | :-------------: | -| [bd539267b42051b0da3d16ffa8f48949dce8aa8f](https://github.com/flutter/engine/commit/bd539267b42051b0da3d16ffa8f48949dce8aa8f) | [2.10.3 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.10.3) | +| [57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab](https://github.com/flutter/engine/commit/57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab) | [2.10.4 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.10.4) | 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-embedded-linux/repository.inc b/recipes-graphics/flutter-embedded-linux/repository.inc index 4c09c50..0af8b7b 100644 --- a/recipes-graphics/flutter-embedded-linux/repository.inc +++ b/recipes-graphics/flutter-embedded-linux/repository.inc @@ -6,6 +6,5 @@ LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=d45359c88eb146940e4bede4f08c821a" SRC_URI = "git://github.com/sony/flutter-embedded-linux.git;protocol=https" -SRCREV = "${AUTOREV}" +SRCREV = "6eeb4f210db5aedd15a3840113017edce23afacb" S = "${WORKDIR}/git" - diff --git a/recipes-graphics/flutter-engine/flutter-engine.bb b/recipes-graphics/flutter-engine/flutter-engine.bb index 6230211..d6430b3 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.3 (stable channel) -ENGINE_VERSION ?= "bd539267b42051b0da3d16ffa8f48949dce8aa8f" +# Flutter 2.10.4 (stable channel) +ENGINE_VERSION ?= "57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab" PACKAGECONFIG ?= "release-mode" PACKAGECONFIG[debug-mode] = "--runtime-mode debug --unoptimized" PACKAGECONFIG[profile-mode] = "--runtime-mode profile --no-lto"