1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #107075 from m4gr3d/implement_javaclasswrapper_has_method

[Android] `JavaClassWrapper` bug fixes
This commit is contained in:
Thaddeus Crews
2025-09-26 13:47:31 -05:00
12 changed files with 210 additions and 149 deletions

View File

@@ -51,7 +51,7 @@ class AndroidRuntimePlugin(godot: Godot) : GodotPlugin(godot) {
* Provides access to the host [android.app.Activity] to GDScript
*/
@UsedByGodot
override fun getActivity() = super.getActivity()
public override fun getActivity() = super.getActivity()
/**
* Utility method used to create [Runnable] from Godot [Callable].