diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-30 18:24:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 18:24:38 +0100 |
commit | 833ef704661712fd7a5b3befe9bf280100ec9a32 (patch) | |
tree | 121b9f49981cb90e5ea68198197492799ec06e0f /platform/android/export | |
parent | 33b560a5cf1334d8d345eea36229230ef3d08027 (diff) | |
parent | 50ab6decfeffb04b3f6409e573d76bed6150d52b (diff) |
Merge pull request #34317 from m4gr3d/make_app_id_match_godot_package_name
Replace the android.defaultConfig.applicationId in build.gradle with the package/unique_name
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 0645efccd7..2a3e4e754e 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1984,10 +1984,13 @@ public: build_command = build_path.plus_file(build_command); + String package_name = get_package_name(p_preset->get("package/unique_name")); + List<String> cmdline; cmdline.push_back("build"); - cmdline.push_back("-p"); - cmdline.push_back(build_path); + cmdline.push_back("-Pexport_package_name=" + package_name); // argument to specify the package name. + cmdline.push_back("-p"); // argument to specify the start directory. + cmdline.push_back(build_path); // start directory. /*{ used for debug int ec; String pipe; |