From e5f69b53dbd987212e0333ab19ab47481a5c7ff4 Mon Sep 17 00:00:00 2001 From: Hidenori Matsubayashi Date: Thu, 12 May 2022 07:54:15 +0900 Subject: [PATCH] Update for flutter 3.0.0 (#38) Signed-off-by: Hidenori.Matsubayashi --- README.md | 4 ++-- recipes-graphics/flutter-embedded-linux/repository.inc | 2 +- recipes-graphics/flutter-engine/flutter-engine.bb | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7953c94..25fe68b 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 ?= "57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab" +ENGINE_VERSION ?= "d1b9a6938ad77326ac3a94d92bbc77933ed829ed" ``` When creating a Flutter project, you will need to use the following version of the Flutter SDK. | Engine version | Flutter SDK version | | :-------------: | :-------------: | -| [57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab](https://github.com/flutter/engine/commit/57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab) | [2.10.5 (stable channel)](https://github.com/flutter/flutter/releases/tag/2.10.5) | +| [d1b9a6938ad77326ac3a94d92bbc77933ed829ed](https://github.com/flutter/engine/commit/d1b9a6938ad77326ac3a94d92bbc77933ed829ed) | [3.0.0 (stable channel)](https://github.com/flutter/flutter/releases/tag/3.0.0) | 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 0af8b7b..de646d7 100644 --- a/recipes-graphics/flutter-embedded-linux/repository.inc +++ b/recipes-graphics/flutter-embedded-linux/repository.inc @@ -6,5 +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 = "6eeb4f210db5aedd15a3840113017edce23afacb" +SRCREV = "63a688c43e13a6e64561de83de543bb4b34a94dc" S = "${WORKDIR}/git" diff --git a/recipes-graphics/flutter-engine/flutter-engine.bb b/recipes-graphics/flutter-engine/flutter-engine.bb index 322b4fc..247f94f 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.5 (stable channel) -ENGINE_VERSION ?= "57d3bac3dd5cb5b0e464ab70e7bc8a0d8cf083ab" +# Flutter 3.0.0 (stable channel) +ENGINE_VERSION ?= "d1b9a6938ad77326ac3a94d92bbc77933ed829ed" PACKAGECONFIG ?= "release-mode" PACKAGECONFIG[debug-mode] = "--runtime-mode debug --unoptimized" PACKAGECONFIG[profile-mode] = "--runtime-mode profile --no-lto"