From 05b963c3c9d6bb23d7c2060142d7cc776f5e9a4a Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Fri, 26 Jun 2020 01:41:13 -0700 Subject: [PATCH] Specify the list of supported java types for the Godot Android Plugin --- tutorials/plugins/android/android_plugin.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tutorials/plugins/android/android_plugin.rst b/tutorials/plugins/android/android_plugin.rst index 68a381f2e..ccc8330b3 100644 --- a/tutorials/plugins/android/android_plugin.rst +++ b/tutorials/plugins/android/android_plugin.rst @@ -179,5 +179,6 @@ Godot crashes upon load Check ``adb logcat`` for possible problems, then: -- Check that the methods used in the Java singleton only use simple - Java datatypes. More complex datatypes are not supported. +- Check that the methods exposed by the plugin used the following Java types: ``void``, ``boolean``, ``int``, ``float``, ``java.lang.String``, ``org.godotengine.godot.Dictionary``, ``int[]``, ``byte[]``, ``float[]``, ``java.lang.String[]``. + + - More complex datatypes are not supported for now.