Pieter Inghelram
Pieter Inghelram
(note I'm new to Godot/GDscript). I was trying the "Signal example" in a dummy project and found that it wasn't working. `In Object of type 'Node': Attempt to connect nonexistent...
disposing the AuthorizationService helped for me... (edit: I found out when looking at the source of AuthorizationService, maybe add it to the documentation)
@awahnteh in your case in the MainActivity you probably have something like: `authService = new AuthorizationService(this);` you can for example dispose it in onDestroy `authService.dispose()` the doc describes the following:...