diff options
author | Marcus Brummer <mbrlabs7@gmail.com> | 2020-06-04 13:01:15 +0200 |
---|---|---|
committer | Marcus Brummer <mbrlabs7@gmail.com> | 2020-06-04 13:37:14 +0200 |
commit | 21263a65a9a44fc06ed5311fc600bd72b7f5243f (patch) | |
tree | a04b17e1c8122ef623635a0c6e821051ae60efbd /platform/android | |
parent | f05b4fea33e84ea3322702d774d69926a41ba913 (diff) |
Check if the specified Android release keystore exists
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 3579b5a112..176fc3110a 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -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 == "") { |