diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-17 00:23:32 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-17 00:23:32 +0100 |
commit | 66b33c15e42005bfd4c60c4c50805a0aaf5a2c80 (patch) | |
tree | 800a638ac75e389dfac0aa3ca873eaab48ce7673 /platform/android/export/gradle_export_util.h | |
parent | c28493ad048f65bdcd62f6be7558fa7b442ea801 (diff) | |
parent | a37ad265dc818d2aeaec97e1559ecae42e5487e2 (diff) | |
download | redot-engine-66b33c15e42005bfd4c60c4c50805a0aaf5a2c80.tar.gz |
Merge pull request #88297 from dsnopek/android-configure-gradle-path
Android: Allow using alternative Gradle build directory
Diffstat (limited to 'platform/android/export/gradle_export_util.h')
-rw-r--r-- | platform/android/export/gradle_export_util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/android/export/gradle_export_util.h b/platform/android/export/gradle_export_util.h index 2498394add..9f8e476f73 100644 --- a/platform/android/export/gradle_export_util.h +++ b/platform/android/export/gradle_export_util.h @@ -63,6 +63,7 @@ static const int XR_MODE_OPENXR = 1; struct CustomExportData { String assets_directory; + String libs_directory; bool debug; Vector<String> libs; }; @@ -94,7 +95,7 @@ Error store_string_at_path(const String &p_path, const String &p_data); Error rename_and_store_file_in_gradle_project(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key); // Creates strings.xml files inside the gradle project for different locales. -Error _create_project_name_strings_files(const Ref<EditorExportPreset> &p_preset, const String &project_name); +Error _create_project_name_strings_files(const Ref<EditorExportPreset> &p_preset, const String &project_name, const String &p_gradle_build_dir); String bool_to_string(bool v); |