Skip to content

Commit 00eb367

Browse files
committed
Upgrade SDK and tools
1 parent 36876a0 commit 00eb367

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android-sdk/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN dpkg --add-architecture i386 && \
2424

2525
# download and install Gradle
2626
# https://services.gradle.org/distributions/
27-
ARG GRADLE_VERSION=8.1.1
27+
ARG GRADLE_VERSION=8.3
2828
ARG GRADLE_DIST=bin
2929
RUN cd /opt && \
3030
wget -q https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-${GRADLE_DIST}.zip && \
@@ -34,15 +34,15 @@ RUN cd /opt && \
3434

3535
# download and install Kotlin compiler
3636
# https://github.com/JetBrains/kotlin/releases/latest
37-
ARG KOTLIN_VERSION=1.8.21
37+
ARG KOTLIN_VERSION=1.9.10
3838
RUN cd /opt && \
3939
wget -q https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_VERSION}/kotlin-compiler-${KOTLIN_VERSION}.zip && \
4040
unzip *kotlin*.zip && \
4141
rm *kotlin*.zip
4242

4343
# download and install Android SDK
4444
# https://developer.android.com/studio#command-line-tools-only
45-
ARG ANDROID_SDK_VERSION=9477386
45+
ARG ANDROID_SDK_VERSION=10406996
4646
ENV ANDROID_HOME /opt/android-sdk
4747
RUN mkdir -p ${ANDROID_HOME}/cmdline-tools && \
4848
wget -q https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_VERSION}_latest.zip && \

0 commit comments

Comments
 (0)