You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Fix JAR files signed with the MD5 algorithm are not supported
This commit is contained in:
@@ -1282,9 +1282,9 @@ Error EditorExportPlatformAndroid::export_project(const String &p_path, bool p_d
|
|||||||
|
|
||||||
List<String> args;
|
List<String> args;
|
||||||
args.push_back("-digestalg");
|
args.push_back("-digestalg");
|
||||||
args.push_back("SHA1");
|
args.push_back("SHA-256");
|
||||||
args.push_back("-sigalg");
|
args.push_back("-sigalg");
|
||||||
args.push_back("MD5withRSA");
|
args.push_back("SHA256withRSA");
|
||||||
String tsa_url = EditorSettings::get_singleton()->get("android/timestamping_authority_url");
|
String tsa_url = EditorSettings::get_singleton()->get("android/timestamping_authority_url");
|
||||||
if (tsa_url != "") {
|
if (tsa_url != "") {
|
||||||
args.push_back("-tsa");
|
args.push_back("-tsa");
|
||||||
|
|||||||
Reference in New Issue
Block a user