File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RUN dpkg --add-architecture i386 && \
24
24
25
25
# download and install Gradle
26
26
# https://services.gradle.org/distributions/
27
- ARG GRADLE_VERSION=8.1.1
27
+ ARG GRADLE_VERSION=8.3
28
28
ARG GRADLE_DIST=bin
29
29
RUN cd /opt && \
30
30
wget -q https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-${GRADLE_DIST}.zip && \
@@ -34,15 +34,15 @@ RUN cd /opt && \
34
34
35
35
# download and install Kotlin compiler
36
36
# https://github.com/JetBrains/kotlin/releases/latest
37
- ARG KOTLIN_VERSION=1.8.21
37
+ ARG KOTLIN_VERSION=1.9.10
38
38
RUN cd /opt && \
39
39
wget -q https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_VERSION}/kotlin-compiler-${KOTLIN_VERSION}.zip && \
40
40
unzip *kotlin*.zip && \
41
41
rm *kotlin*.zip
42
42
43
43
# download and install Android SDK
44
44
# https://developer.android.com/studio#command-line-tools-only
45
- ARG ANDROID_SDK_VERSION=9477386
45
+ ARG ANDROID_SDK_VERSION=10406996
46
46
ENV ANDROID_HOME /opt/android-sdk
47
47
RUN mkdir -p ${ANDROID_HOME}/cmdline-tools && \
48
48
wget -q https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_VERSION}_latest.zip && \
You can’t perform that action at this time.
0 commit comments