blob: aaae1e42484a8421640c16903faca4da8f5eb48f [file] [log] [blame]
#!/usr/bin/env python
# Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
import os
import subprocess
import utils
def sign(unsigned_apk, signed_apk, keystore):
print 'Signing (ignore the warnings)'
cmd = ['zip', '-d', unsigned_apk, 'META-INF/*']
utils.PrintCmd(cmd)
subprocess.call(cmd)
cmd = [
'jarsigner',
'-sigalg', 'SHA1withRSA',
'-digestalg', 'SHA1',
'-keystore', keystore,
'-storepass', 'android',
'-signedjar', signed_apk,
unsigned_apk,
'androiddebugkey'
]
utils.PrintCmd(cmd)
subprocess.check_call(cmd)
def sign_with_apksigner(build_tools_dir, unsigned_apk, signed_apk, keystore, password):
cmd = [
os.path.join(build_tools_dir, 'apksigner'),
'sign',
'-v',
'--ks', keystore,
'--ks-pass', 'pass:' + password,
'--min-sdk-version', '19',
'--out', signed_apk,
unsigned_apk
]
utils.PrintCmd(cmd)
subprocess.check_call(cmd)