Using RoboVM bindings: https://github.com/BlueRiverInteractive/robovm-ios-bindings more specifically Google Play Game Service bindings.
I can't seem to be able to compile the bindings. Getting this error:
An internal error occurred during: "Launching my-gdx-game-robovm".
No @Marshaler found for parameter 3 of @Bridge method
<org.robovm.bindings.gpgs.GPGLeaderboard: void
objc_loadScoresWithCompletionHandler(org.robovm.bindings.gpgs.GPGLeaderboard,org.robovm.objc.S elector,org.robovm.bindings.gpgs.GPGLeaderboardLoadScoresBlock)>
Now you could say that there is an error with the bindings themselves but I think that isn't the case because heres what happens:
- If you run GPGC project directly (by running the sample application) it compiles properly and runs on simulator.
- If you try to compile your whole libGDX game that has GPGC project referenced it throws this error.
- If you make changes to GPGLeaderboard file (the file containing the error) and try to run GPGC project directly it throws this error too. If you run it second time it magically disappears.
Why is this happening? How could it be fixed?
Using latest GPGC bindings and latest RoboVM nightlies (2014.01.05).
Thank you.
EDIT: the author of the bindings fixed this issue (as of 2014.01.07).
The marshaling of blocks have changed recently in RoboVM. The author of these bindings has to update them accordingly. Here's an example (from
UIApplication
) that shows how to marshal aVoidBlock
in an instance method:And here's an example for a static method (in
UIView
):