File tree Expand file tree Collapse file tree 3 files changed +53
-4
lines changed Expand file tree Collapse file tree 3 files changed +53
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 9.3
4+
5+ ** Main Image**
6+
7+ ``` console
8+ docker pull thyrlian/android-sdk:9.3
9+ ```
10+
11+ ** What's New**
12+ * Upgraded Ubuntu from 22.04.3 to 22.04.4
13+ * Upgraded OpenJDK from 17.0.8.1 to 17.0.10
14+ * Upgraded Gradle from 8.3 to 8.7
15+ * Upgraded Kotlin compiler from 1.9.10 to 1.9.23
16+ * Upgraded Android SDK Command-line Tools from 11.0 to 13.0
17+
18+ Component | Version
19+ --------- | -------
20+ Ubuntu | 22.04.4 LTS (Jammy Jellyfish)
21+ Java | 17.0.10
22+ Gradle | 8.7
23+ Kotlin compiler | 1.9.23
24+ Android SDK Command-line Tools | 13.0
25+ OpenSSH | 1:8.9p1-3
26+
27+ ** Sub-image** : VNC
28+
29+ ``` console
30+ docker pull thyrlian/android-sdk-vnc:9.3
31+ ```
32+
33+ Component | Version
34+ --------- | -------
35+ TightVNC | 1.3.10
36+
37+ ** Sub-image** : Firebase Test Lab
38+
39+ ``` console
40+ docker pull thyrlian/android-sdk-firebase-test-lab:9.3
41+ ```
42+
43+ ** What's New**
44+ * Upgraded Google Cloud SDK from 447.0.0 to 471.0.0
45+
46+ Component | Version
47+ --------- | -------
48+ Google Cloud SDK | 471.0.0
49+
50+ ---
51+
352## 9.2
453
554** Main Image**
Original file line number Diff line number Diff line change @@ -908,7 +908,7 @@ See [here](https://github.com/thyrlian/AndroidSDK/blob/master/CHANGELOG.md).
908908
909909## License
910910
911- Copyright © 2016-2023 Jing Li. It is released under the [Apache License](https://www.apache.org/licenses/LICENSE-2.0). See the [LICENSE](https://raw.githubusercontent.com/thyrlian/AndroidSDK/master/LICENSE) file for details.
911+ Copyright © 2016-2024 Jing Li. It is released under the [Apache License](https://www.apache.org/licenses/LICENSE-2.0). See the [LICENSE](https://raw.githubusercontent.com/thyrlian/AndroidSDK/master/LICENSE) file for details.
912912
913913By continuing to use this Docker Image, you accept the terms in below license agreement.
914914
Original file line number Diff line number Diff 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.3
27+ ARG GRADLE_VERSION=8.7
2828ARG GRADLE_DIST=bin
2929RUN 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.9.10
37+ ARG KOTLIN_VERSION=1.9.23
3838RUN 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=10406996
45+ ARG ANDROID_SDK_VERSION=11076708
4646ENV ANDROID_HOME /opt/android-sdk
4747RUN mkdir -p ${ANDROID_HOME}/cmdline-tools && \
4848 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