0

I'm looking for some up to date tutorial for AppWarp libGDX integration. I think, this is a bit deprecated: http://appwarp.shephertz.com/game-development-center/java-multiplayer-libgdx-tutorial

I know the basic concepts, that I need AppWarp client and three other adapters and already have created an app and a room in App42 Management Console, but don't know how to import AppWarp SDK to Android Studio. I have a perfectly working single player application, but get stuck in details and integration process.

plaidshirt
  • 5,189
  • 19
  • 91
  • 181

1 Answers1

2

In Android Studio you need to add App42MultiPlayerGamingSDK as a dependency in build.gardle file. You can use following code snippet in which libs folder contains the SDK library.

dependencies {

compile files('libs/App42MultiPlayerGamingSDK.jar')

}