Skip to content

Commit 60b7a90

Browse files
Flutter 3.27.3, JDK 17 (#4760)
* Flutter 3.27.3 * Require exact JDK 17 version for building android apps
1 parent 6867769 commit 60b7a90

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ skip_commits:
1010

1111
environment:
1212
python_stack: python 3.12
13-
FLUTTER_VERSION: 3.27.2
13+
FLUTTER_VERSION: 3.27.3
1414
GITHUB_TOKEN:
1515
secure: 9SKIwc3VSfYJ5IChvNR74hQprJ0DRmcV9pPX+8KyE6IXIdfMsX6ikeUmMhJGRu3ztkZaF45jmU7Xn/6tauXQXhDBxK1N8kFHFSAnq6LjUXyhS0TZKX/H+jDozBeVbCXp
1616
TWINE_USERNAME: __token__

sdk/python/packages/flet-cli/src/flet_cli/commands/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
PYODIDE_ROOT_URL = "https://cdn.jsdelivr.net/pyodide/v0.25.0/full"
3434
DEFAULT_TEMPLATE_URL = "gh:flet-dev/flet-build-template"
3535

36-
MINIMAL_FLUTTER_VERSION = version.Version("3.27.2")
36+
MINIMAL_FLUTTER_VERSION = version.Version("3.27.3")
3737

3838
error_style = Style(color="red", bold=True)
3939
console = Console(log_path=False, theme=Theme({"log.message": "green bold"}))

sdk/python/packages/flet-cli/src/flet_cli/utils/jdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def check_jdk_version(jdk_path):
3333
1
3434
] # Extract version from output
3535
major_version = int(version_line.split(".")[0])
36-
return major_version >= JDK_MAJOR_VER
36+
return major_version == JDK_MAJOR_VER
3737
except (IndexError, ValueError, FileNotFoundError) as e:
3838
return False
3939

0 commit comments

Comments
 (0)