Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.

Commit 62c99ae

Browse files
committed
Update workflow to use JDK 17
1 parent 39741e7 commit 62c99ae

File tree

28 files changed

+38
-42
lines changed

28 files changed

+38
-42
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v2
3030

31-
- name: set up JDK 11
31+
- name: set up JDK 17
3232
uses: actions/setup-java@v1
3333
with:
34-
java-version: 11
34+
java-version: 17
3535

3636
- name: Generate cache key
3737
run: .github/scripts/checksum.sh checksum.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Dec 07 10:07:34 CET 2022
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Apr 05 16:14:35 JST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

DownloadableFonts/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.1.3' apply false
4-
id 'com.android.library' version '7.1.3' apply false
3+
id 'com.android.application' version '7.4.1' apply false
4+
id 'com.android.library' version '7.4.1' apply false
55
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
66
}
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

DragAndDrop/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

3+
plugins {
4+
id 'com.android.application' version '7.3.1' apply false
5+
id 'org.jetbrains.kotlin.android' version '1.5.31' apply false
6+
}
7+
38
task clean(type: Delete) {
49
delete rootProject.buildDir
5-
}
10+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Oct 21 19:03:22 CEST 2021
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

DragAndDrop/settings.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ pluginManagement {
44
google()
55
mavenCentral()
66
}
7-
plugins {
8-
id 'com.android.application' version '7.2.1'
9-
id 'org.jetbrains.kotlin.android' version '1.5.31'
10-
}
117
}
128
dependencyResolutionManagement {
139
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

Haptics/build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ task clean(type: Delete) {
2626
}
2727

2828
subprojects {
29-
repositories {
30-
google()
31-
mavenCentral()
32-
}
33-
3429
apply plugin: 'com.diffplug.spotless'
3530
spotless {
3631
kotlin {
@@ -44,4 +39,4 @@ subprojects {
4439
licenseHeaderFile rootProject.file('spotless/license.kt')
4540
}
4641
}
47-
}
42+
}

0 commit comments

Comments
 (0)