Skip to content

Commit

Permalink
Merge pull request #18626 from RameshRavone/2.1
Browse files Browse the repository at this point in the history
Fix: JAR files signed with the MD5 algorithm as unsigned (godot 2)
  • Loading branch information
akien-mga authored May 8, 2018
2 parents 2f0d502 + 4ad0257 commit 326fd35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion platform/android/AndroidManifest.xml.template
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,6 @@ $$ADD_PERMISSION_CHUNKS$$
<uses-permission android:name="godot.custom.18"/>
<uses-permission android:name="godot.custom.19"/>

<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="23"/>
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="27"/>

</manifest>
4 changes: 2 additions & 2 deletions platform/android/export/export.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1292,9 +1292,9 @@ Error EditorExportPlatformAndroid::export_project(const String &p_path, bool p_d

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("android/timestamping_authority_url");
if (tsa_url != "") {
args.push_back("-tsa");
Expand Down

0 comments on commit 326fd35

Please sign in to comment.