1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-20 14:45:44 +00:00

Fix: JAR files signed with the MD5 algorithm as unsigned

(cherry picked from commit d3182248c4)
This commit is contained in:
RameshRavone
2018-05-05 12:06:45 +05:30
committed by Rémi Verschelde
parent f847837fb2
commit fa19d01c7b

View File

@@ -1643,9 +1643,9 @@ public:
List<String> args;
args.push_back("-digestalg");
args.push_back("SHA1");
args.push_back("SHA-256");
args.push_back("-sigalg");
args.push_back("MD5withRSA");
args.push_back("SHA256withRSA");
String tsa_url = EditorSettings::get_singleton()->get("export/android/timestamping_authority_url");
if (tsa_url != "") {
args.push_back("-tsa");