In this we can find a good repository for to check if the Gamepad is working.
I already download the example and works fine with Windows, but I cannot make this work on Android.
I also check this post but it never show any example…But it looks like you can use a gamepad on the Android Platform.
Finally I check the documentation
I don’t understand how to setup the Gamepad on Android.
Works fine on Windows, but there’s no input on Android.
I make a copy of the repository Gamepad Tester found on the Examples.
We need to setup support for Gamepad on Android and Android TV devices.
I also found this very interesting I already setup a project.
I can use the Gamepad on Android but via Html5 version while the native it doesn’t work.
I’m not sure if we need more setup to enable the gamepad on the Android platform.
maybe the manifest need some specific permissions ?
I also record what I mean. The gamepd result is this one.
Defold on Windows is ok.
Defold on hmtl5 on Windows web browser is ok.
Defold on native android gamepad doesn’t work.
Defold on html5 via android web browser the gamepad works fine.
That’s why I’m confusing…From what I read on the manual it should work on native. android.
I’m using the Defold Version 1.6.1.
html worked as set up, maybe android needs some sort of extra controller-bridge or the controller might need to be connected directly to the phone, looks like you were going through the PC.
The only way I can use the controller on the phone is via Bluetooth.
When I connect via cable the controller is used by the PC.
When I disconnect the controller it works with Bluetooth…the gamepad is connected to the phone.
I just try to not make a long video…I was also thinking if on Android the gamepad doesn’t work with Bluetooth. I will try to test if connected with a cable works on Android.
Well I found an USB adapter to use the gamepad via USB…nothing happens, I’m sure it works fine because outside the defold build the gamepad works fine. What could be the issue?
Maybe I should test old defold versions.
First you need to check that your gamepad has bindings set in the gamepad settings file:
What kind of gamepad is it?
If there is a binding for your gamepad then make sure it has platform set to “android”. If there is not binding then you need to create one. There are instructions here:
You can also try to add an input binding for raw gamepad input and verify that you get any data from the gamepad:
No it’s not working…I also try with a Bluetooth keyboard, looks like it have the same issue.
I check again the Bluetooth keyboard it works fine.
So the Bluetooth is not the issue.
I’m not sure about about what ‘kind’ of gamepad means.
I have two gamepads to test.
The first one is the 8bitdo lite. While on windows everything works fine.
Android doesn’t work…the 8bitdo lite I try to test with Bluetooth and Wired on my phone and a tablet.
This is the gamepad
The same it doesn’t work…But I’m sure this should work on Android.
I test with other game engine Unity and they were working fine.
Well you can even use the OS Android without any issues.
I was also looking the DefoldActivity.java
I’m not sure were you read the input for this devices.
I think something is missing. Like I show on the video if I build the Html5 version I can use the Gamepad…I was also trying to develop for the Android TV and Fire TV but looks like other user wasn’t able to use Defold there. I think the main activity need a review.
When I connect the gamepad the Android log cat show
WARNING:INPUT: No gamepad map found for gamepad 1 (GuliKit Controller AW). The raw gamepad map will be used.
I try to use this. But nothings show the log cat
if action_id == hash("raw") then
pprint(action.gamepad_buttons)
pprint(action.gamepad_axis)
pprint(action.gamepad_hats)
end
Well after a lot of testing I was finally able to this work.
From what I understand we need to create a layout for the controller.
For example for the GuliKitController I have to add this on the .gamepads file.
We can do the same thing for other controller and it’s fully supported.
Now the thing is how to support the Android/Fire TV devices. Cannot find examples with the Raw…actually on other post says it probably needs a custom plugin.
But this should be a nice help to setup specific controllers.
This means you have to manually setup every game controller.
Well on android this seems very hard to do…I will try to check how the Raw way works.