1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 22:40:12 +01:00

Changed signing code to support JDK7

This commit is contained in:
AlexanderR 2012-06-11 02:33:25 +11:00
parent c17bef6290
commit 2044a53cec

View File

@ -111,7 +111,8 @@ def main():
# Sign the application... # Sign the application...
p = subprocess.Popen(['jarsigner', '-keystore', keystore, p = subprocess.Popen(['jarsigner', '-keystore', keystore,
'-storepass', keystorepass, '-keypass', keypass, '-storepass', keystorepass, '-keypass', keypass, '-sigalg',
'MD5withRSA', '-digestalg', 'SHA1',
apkfile, keyalias], stdout=subprocess.PIPE) apkfile, keyalias], stdout=subprocess.PIPE)
output = p.communicate()[0] output = p.communicate()[0]
print output print output