Skip to content

Commit

Permalink
Bump up image version to v9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thyrlian committed Apr 14, 2024
1 parent 105b7b8 commit 8301e96
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 4 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# Changelog

## 9.3

**Main Image**

```console
docker pull thyrlian/android-sdk:9.3
```

**What's New**
* Upgraded Ubuntu from 22.04.3 to 22.04.4
* Upgraded OpenJDK from 17.0.8.1 to 17.0.10
* Upgraded Gradle from 8.3 to 8.7
* Upgraded Kotlin compiler from 1.9.10 to 1.9.23
* Upgraded Android SDK Command-line Tools from 11.0 to 13.0

Component | Version
--------- | -------
Ubuntu | 22.04.4 LTS (Jammy Jellyfish)
Java | 17.0.10
Gradle | 8.7
Kotlin compiler | 1.9.23
Android SDK Command-line Tools | 13.0
OpenSSH | 1:8.9p1-3

**Sub-image**: VNC

```console
docker pull thyrlian/android-sdk-vnc:9.3
```

Component | Version
--------- | -------
TightVNC | 1.3.10

**Sub-image**: Firebase Test Lab

```console
docker pull thyrlian/android-sdk-firebase-test-lab:9.3
```

**What's New**
* Upgraded Google Cloud SDK from 447.0.0 to 471.0.0

Component | Version
--------- | -------
Google Cloud SDK | 471.0.0

---

## 9.2

**Main Image**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ See [here](https://github.com/thyrlian/AndroidSDK/blob/master/CHANGELOG.md).
## License
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.
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.
By continuing to use this Docker Image, you accept the terms in below license agreement.
Expand Down
6 changes: 3 additions & 3 deletions android-sdk/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN dpkg --add-architecture i386 && \

# download and install Gradle
# https://services.gradle.org/distributions/
ARG GRADLE_VERSION=8.3
ARG GRADLE_VERSION=8.7
ARG GRADLE_DIST=bin
RUN cd /opt && \
wget -q https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-${GRADLE_DIST}.zip && \
Expand All @@ -34,15 +34,15 @@ RUN cd /opt && \

# download and install Kotlin compiler
# https://github.com/JetBrains/kotlin/releases/latest
ARG KOTLIN_VERSION=1.9.10
ARG KOTLIN_VERSION=1.9.23
RUN cd /opt && \
wget -q https://github.com/JetBrains/kotlin/releases/download/v${KOTLIN_VERSION}/kotlin-compiler-${KOTLIN_VERSION}.zip && \
unzip *kotlin*.zip && \
rm *kotlin*.zip

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

0 comments on commit 8301e96

Please sign in to comment.