Skip to content

Commit

Permalink
Merge pull request #89579 from beicause/master
Browse files Browse the repository at this point in the history
Fix `gdextensionlibs.json` storage path in Android gradle build
  • Loading branch information
akien-mga committed Mar 24, 2024
2 parents 9b79f8e + 428fa0d commit 428ba4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/android/export/export_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 428ba4c

Please sign in to comment.