From 493ad1f2db3bd239f2c67dcad290937794325e15 Mon Sep 17 00:00:00 2001 From: Ovidijus Striaukas Date: Tue, 13 Aug 2024 20:04:52 -0700 Subject: [PATCH] PR #194: Add missing Ninja package @ovistr This pull request adds missing [Ninja C++ build system](https://github.com/ninja-build/ninja) package that is used as the [experimental C/C++ build system](https://developer.android.com/build/cxx-ninja) for Android builds. This package is distributed for Ubuntu as `ninja-build` package. Without this package, some builds might fail by not being able to find this binary: ``` > Task :app:configureCMakeRelWithDebInfo[armeabi-v7a] FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:configureCMakeRelWithDebInfo[armeabi-v7a]'. > [CXX1416] Could not find Ninja on PATH or in SDK CMake bin folders. ``` --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3bdd105..2d61bfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -104,6 +104,7 @@ RUN apt-get update -qq > /dev/null && \ autoconf \ build-essential \ cmake \ + ninja-build \ curl \ file \ git \