I need both 32 bit and 64 bit for libncurses.so.5 on Ubuntu 20.04 (Focal Fossa) for building an Android application on an older Android NDK. What are my options? libncurses.so.5 is not on apt-get anymore.
So adding the universe pocket didn't completely solve my problem, I found out that I also had to set up the correct foreign architecture.
To set this up, I first checked main architecture, which was amd64, and foreign architecture was empty. So I needed to add the i386 architecture as well.
You have to update your package lists, as this package is still available from universe pocket.
Install them with:
So adding the
universe
pocket didn't completely solve my problem, I found out that I also had to set up the correct foreign architecture.To set this up, I first checked main architecture, which was
amd64
, and foreign architecture was empty. So I needed to add thei386
architecture as well.