1
0
mirror of https://github.com/godotengine/godot synced 2024-07-08 21:35:47 +00:00

Merge pull request #89579 from beicause/master

Fix `gdextensionlibs.json` storage path in Android gradle build
This commit is contained in:
Rémi Verschelde 2024-03-24 01:18:22 +01:00
commit 428ba4c367
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -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 {