Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can anyone give me a piece of advice about using bluetooth in libgdx games on Android? My problem is that the whole code is in MyGame project and in MyGame-Android there is only MainActivity class that starts the game on Android.

I can get bluetooth to work in normal Android application but MyGame libgdx project can't see classes that are in MyGame-Android project.

share|improve this question

1 Answer

If you want to use non-multiplatform code in libgdx, you should create an interface on the agnostic project (MyGame), and implement it on the native project (MyGame-Android). Then, on the native project create the implementor object and pass it to the MyGame instance. The interface will hold all the methods that you said are not accessible (a tip: try to can encapsulate the most you can regarding the bluetooth management and expose only methods relevant to your game, so you don't have to create a huge interface).

share|improve this answer
Yes, that worked well. Thank you. – AlgoRhymes Dec 27 '12 at 0:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.