Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2524.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The versions for Flatpak and Android dependencies were updated to latest version for new projects.
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def pyproject_table_linux_system_arch(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
"""

Expand Down
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/empty.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def pyproject_table_linux_system_arch(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
"""

Expand Down
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/pygame.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def pyproject_table_linux_appimage(self):
def pyproject_table_linux_flatpak(self):
return """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
"""

Expand Down
2 changes: 1 addition & 1 deletion src/briefcase/bootstraps/toga.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def pyproject_table_android(self):
base_theme = "Theme.MaterialComponents.Light.DarkActionBar"

build_gradle_dependencies = [
"com.google.android.material:material:1.12.0",
"com.google.android.material:material:1.13.0",
# Needed for DetailedList
# "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
# Needed for MapView
Expand Down
8 changes: 4 additions & 4 deletions tests/commands/new/test_build_gui_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def main():
base_theme = "Theme.MaterialComponents.Light.DarkActionBar"

build_gradle_dependencies = [
"com.google.android.material:material:1.12.0",
"com.google.android.material:material:1.13.0",
# Needed for DetailedList
# "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
# Needed for MapView
Expand Down Expand Up @@ -330,7 +330,7 @@ def main():
""",
"pyproject_table_linux_flatpak": """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
""",
"pyproject_table_windows": """\
Expand Down Expand Up @@ -629,7 +629,7 @@ def main():
""",
"pyproject_table_linux_flatpak": """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
""",
"pyproject_table_windows": """\
Expand Down Expand Up @@ -732,7 +732,7 @@ def main():
""",
"pyproject_table_linux_flatpak": """\
flatpak_runtime = "org.freedesktop.Platform"
flatpak_runtime_version = "24.08"
flatpak_runtime_version = "25.08"
flatpak_sdk = "org.freedesktop.Sdk"
""",
"pyproject_table_windows": """\
Expand Down