mini-soong command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mini-soong: command not found
or when using sudo you get the following error message
sudo: mini-soong: command not found
Solutions to mini-soong: command not found
How To Fix mini-soong: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mini-soong is provided by mini-soong package.
mini-soong is:
Mini-Soong is a minimalist and incomplete reimplementation of Soong, the Android build system. It is intended to simplify the packaging of parts of Android for Debian. It is not intended to be a complete replacement for Soong.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mini-soong
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mini-soong.
sudo apt -y install mini-soong
Or if you have aptitude installed you can use the following command.
sudo aptitude install mini-soong
Summary
In this tutorial we learn how to fix mini-soong command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.