1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Add GDNative libraries to Android custom Gradle builds

This commit is contained in:
Marcel Admiraal
2021-06-25 17:56:41 +01:00
parent 45b66e91e7
commit 7b63f0a22d
2 changed files with 66 additions and 9 deletions

View File

@@ -96,14 +96,6 @@ Error create_directory(const String &p_dir) {
return OK;
}
// Implementation of EditorExportSaveSharedObject.
// This method will only be called as an input to export_project_files.
// This method lets the .so files for all ABIs to be copied
// into the gradle project from the .AAR file
Error ignore_so_file(void *p_userdata, const SharedObject &p_so) {
return OK;
}
// Writes p_data into a file at p_path, creating directories if necessary.
// Note: this will overwrite the file at p_path if it already exists.
Error store_file_at_path(const String &p_path, const Vector<uint8_t> &p_data) {