mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Changed signing code to support JDK7
This commit is contained in:
parent
c17bef6290
commit
2044a53cec
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue