File tree 3 files changed +53
-4
lines changed 3 files changed +53
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
52
## 9.2
4
53
5
54
** 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).
908
908
909
909
## License
910
910
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.
912
912
913
913
By continuing to use this Docker Image, you accept the terms in below license agreement.
914
914
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.3
27
+ ARG GRADLE_VERSION=8.7
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.9.10
37
+ ARG KOTLIN_VERSION=1.9.23
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=10406996
45
+ ARG ANDROID_SDK_VERSION=11076708
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