diff options
author | beicause <1494181792@qq.com> | 2024-03-17 01:11:36 +0800 |
---|---|---|
committer | beicause <1494181792@qq.com> | 2024-03-17 01:11:36 +0800 |
commit | 428fa0dfa79f4f6effedee8367f1c17dcf6a2c5c (patch) | |
tree | f11276ca5398d665220299bdadbd6485fad97a58 /platform/android/export | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-428fa0dfa79f4f6effedee8367f1c17dcf6a2c5c.tar.gz |
Fix gdextensionlibs.json storage path in Android gradle build
It should relative to gradle build directory
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 894c13cc0b..64ef1397ba 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -3096,7 +3096,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP return err; } if (user_data.libs.size() > 0) { - Ref<FileAccess> fa = FileAccess::open(GDEXTENSION_LIBS_PATH, FileAccess::WRITE); + Ref<FileAccess> fa = FileAccess::open(gdextension_libs_path, FileAccess::WRITE); fa->store_string(JSON::stringify(user_data.libs, "\t")); } } else { |