Hi I would like to know if there is a way to put a libgdx game inside an Android app?
like mini-games in talking tom, pou...
I created some games in libgdx and now I want to put them in this app... I don't know how to do it
Hi I would like to know if there is a way to put a libgdx game inside an Android app?
like mini-games in talking tom, pou...
I created some games in libgdx and now I want to put them in this app... I don't know how to do it
you can have a screen include some button for select a game.
if you wanna implement it on libgdx:
you most use 'Screen class' instand of 'Game class' for each game and have a screen for select game. you can learn about screen (https://github.com/libgdx/libgdx/wiki/Extending-the-simple-game)
if you have native android app and wanna put libgdx game on it:
check links :
and if you want use some android native (like Bluetooth) you most use interface in game and implement it on android code
I hope be useful.