purge all references to zipalign, that is delegated to other things

Things like apksigner and @obfusk's tools handle this now.
jarsigner is used in the test, since that's the most common use of
`common.find_sdk_tools_cmd()`.

closes #1100
This commit is contained in:
Hans-Christoph Steiner 2023-02-22 14:22:29 +01:00
parent f8a186b1d9
commit 98448e0481
4 changed files with 3 additions and 18 deletions

View file

@ -118,7 +118,7 @@ class CommonTest(unittest.TestCase):
return False
def _find_all(self):
tools = ['aapt', 'adb', 'zipalign']
tools = ['aapt', 'adb', 'jarsigner']
if os.path.exists(os.path.join(os.getenv('ANDROID_HOME'), 'tools', 'android')):
tools.append('android')
for cmd in tools: