Skip to content

Commit

Permalink
Make JDK_21 default
Browse files Browse the repository at this point in the history
  • Loading branch information
Semper-Viventem committed Aug 21, 2024
1 parent 9a7ef8e commit fd89cd9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: set up JDK 22
- name: set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '22'
java-version: '21'
distribution: 'oracle'
cache: gradle

Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdk = 29
targetSdk = 35

versionCode = 1708536358
versionName = "0.26.2-beta"
versionCode = 1708536359
versionName = "0.26.3-beta"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -220,6 +220,6 @@ enum class JavaConfig(val jvmTarget: String, val jdkVersion: Int, val javaVersio
}
}

private val DEFAULT = JAVA_22
private val DEFAULT = JAVA_21
}
}

0 comments on commit fd89cd9

Please sign in to comment.