Skip to content

Commit 2b2ad0f

Browse files
authored
Merge pull request #41 from AckeeDevOps/fix/missing-fonts
Fix missing fonts
2 parents 1601482 + 236688e commit 2b2ad0f

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and 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

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ARG JAVA_VERSION
4141

4242
SHELL ["/bin/bash", "-c"]
4343

44-
ENV ANDROID_HOME="/opt/android-sdk-linux"
44+
ENV ANDROID_HOME="/opt/android-sdk"
4545
ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR"
4646
ENV PATH="$PATH:$ANDROID_HOME/$CMDLINE_TOOLS_DIR/$CMDLINE_TOOLS_VERSION_DIR/bin"
4747
ENV 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

201201
RUN 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/*

0 commit comments

Comments
 (0)