summaryrefslogtreecommitdiffstats
path: root/platform/android/export
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-12-08 15:23:23 +0100
committerYuri Sizov <yuris@humnom.net>2023-12-08 15:23:23 +0100
commit62b264e6ac038f8bf8968ad2b2922e4db790124d (patch)
tree05d1de6588cad15e102e9bfa303c912520f4e185 /platform/android/export
parentee1bf159241c2eaef82acf16d2799238669bdf80 (diff)
parent0325568a9bb9b9e33e5fe145b69cf3759aaa0027 (diff)
downloadredot-engine-62b264e6ac038f8bf8968ad2b2922e4db790124d.tar.gz
Merge pull request #84676 from m4gr3d/update_package_name_validation_logic
Update the validation logic for the package name
Diffstat (limited to 'platform/android/export')
-rw-r--r--platform/android/export/export_plugin.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index f0ee405b41..aee79d93ed 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -460,7 +460,7 @@ String EditorExportPlatformAndroid::get_valid_basename() const {
if (is_digit(c) && first) {
continue;
}
- if (is_ascii_alphanumeric_char(c)) {
+ if (is_ascii_identifier_char(c)) {
name += String::chr(c);
first = false;
}
@@ -537,13 +537,6 @@ bool EditorExportPlatformAndroid::is_package_name_valid(const String &p_package,
return false;
}
- if (p_package.find("$genname") >= 0 && !is_project_name_valid()) {
- if (r_error) {
- *r_error = TTR("The project name does not meet the requirement for the package name format. Please explicitly specify the package name.");
- }
- return false;
- }
-
return true;
}
@@ -2446,6 +2439,13 @@ bool EditorExportPlatformAndroid::has_valid_project_configuration(const Ref<Edit
err += "\n";
}
+ String package_name = p_preset->get("package/unique_name");
+ if (package_name.find("$genname") >= 0 && !is_project_name_valid()) {
+ // Warning only, so don't override `valid`.
+ err += vformat(TTR("The project name does not meet the requirement for the package name format and will be updated to \"%s\". Please explicitly specify the package name if needed."), get_valid_basename());
+ err += "\n";
+ }
+
r_error = err;
return valid;
}