From cae7a518556da32b62976fec69ad3210750b5ac8 Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Tue, 24 Aug 2021 09:20:00 +0000 Subject: [PATCH] Bug 1727070 - libncurses5 is necessary to do native debugging in Android Studio on Debian and derivatives. r=glandium DONTBUILD Differential Revision: https://phabricator.services.mozilla.com/D123343 --- python/mozboot/mozboot/debian.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/mozboot/mozboot/debian.py b/python/mozboot/mozboot/debian.py index a5b1247dfa4d..30b5c5def134 100644 --- a/python/mozboot/mozboot/debian.py +++ b/python/mozboot/mozboot/debian.py @@ -66,6 +66,7 @@ class DebianBootstrapper(LinuxBootstrapper, BaseBootstrapper): MOBILE_ANDROID_COMMON_PACKAGES = [ "openjdk-8-jdk-headless", # Android's `sdkmanager` requires Java 1.8 exactly. "wget", # For downloading the Android SDK and NDK. + "libncurses5", # For native debugging in Android Studio ] def __init__(self, distro, version, dist_id, codename, **kwargs):