Unverified Commit c0ff2a38 by Rémi Verschelde Committed by GitHub

Merge pull request #39281 from mbrlabs/check-android-release-keystore

Check if the specified Android release keystore exists
parents b8ff8fe8 21263a65
......@@ -1786,6 +1786,13 @@ public:
}
}
String rk = p_preset->get("keystore/release");
if (!rk.empty() && !FileAccess::exists(rk)) {
valid = false;
err += TTR("Release keystore incorrectly configured in the export preset.") + "\n";
}
if (bool(p_preset->get("custom_template/use_custom_build"))) {
String sdk_path = EditorSettings::get_singleton()->get("export/android/custom_build_sdk_path");
if (sdk_path == "") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment