File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ Unreleased]
8+ ### Fixed
9+ - Fixed missing ` fontconfig ` dependency for EasyLauncher plugin
10+
711## [ v3.0.1] - 2026-03-04
812### Fixed
913- Fixed missing ` platform-tools ` in Android SDK installation. It turned out that AGP downloads them during build if missing
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ ARG JAVA_VERSION
4141
4242SHELL ["/bin/bash" , "-c" ]
4343
44- ENV ANDROID_HOME="/opt/android-sdk-linux "
44+ ENV ANDROID_HOME="/opt/android-sdk"
4545ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR"
4646ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR/bin"
4747ENV PATH="$PATH:$ANDROID_HOME/platform-tools"
@@ -199,6 +199,8 @@ LABEL tag="ackee-gitlab" \
199199 description="This Docker image serves as an environment for running Android builds on Gitlab CI in Ackee workspace"
200200
201201RUN apt update && apt install -y --no-install-recommends \
202+ # Needed for EasyLauncher
203+ fontconfig \
202204 # Needed for danger-js
203205 nodejs \
204206 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments