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

Add GDNative libraries to Android custom Gradle builds

(cherry picked from commit e021cab45b)
This commit is contained in:
Marcel Admiraal
2021-06-25 17:58:31 +01:00
committed by Rémi Verschelde
parent 30bb133e01
commit c43d33fa60
2 changed files with 67 additions and 9 deletions

View File

@@ -84,14 +84,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) {