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:
parent
c17bef6290
commit
2044a53cec
@ -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…
Reference in New Issue
Block a user