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/2259.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Java JDK 17.0.15+6 is now used to package Android apps. Use ``briefcase upgrade java`` to update your Briefcase-installed JDK instance to this version.
4 changes: 2 additions & 2 deletions src/briefcase/integrations/java.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class JDK(ManagedTool):

# Latest OpenJDK as of January 2025: https://adoptium.net/temurin/releases/
JDK_MAJOR_VER = "17"
JDK_RELEASE = "17.0.14"
JDK_BUILD = "7"
JDK_RELEASE = "17.0.15"
JDK_BUILD = "6"
JDK_INSTALL_DIR_NAME = f"java{JDK_MAJOR_VER}"

def __init__(self, tools: ToolCache, java_home: Path):
Expand Down
4 changes: 2 additions & 2 deletions tests/integrations/java/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from briefcase.integrations.file import File
from briefcase.integrations.subprocess import Subprocess

JDK_RELEASE = "17.0.14"
JDK_BUILD = "7"
JDK_RELEASE = "17.0.15"
JDK_BUILD = "6"


@pytest.fixture
Expand Down