Fix gdextensionlibs.json storage path in Android gradle build
It should relative to gradle build directory
This commit is contained in:
parent
fe01776f05
commit
428fa0dfa7
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue