Skip to content

SimonIT/gdx-AppWarp

Repository files navigation

gdx-AppWarp

GitHub

The goal of this project is to provide a sdk for all platforms available with libgdx. For this, I'm using the version 2.3 of the AppWarp Java SDK and for gwt version 2.1 of the AppWarp JS SDK, for which I created the bindings to the listeners and events.

Installation

You can replace master-SNAPSHOT with any tag from the release section to use a stable version.

desktop, ios:

api 'com.github.SimonIT.gdx-AppWarp:java:master-SNAPSHOT:all'

android: Android contains already the json dependency, so we exclude it

api('com.github.SimonIT.gdx-AppWarp:java:master-SNAPSHOT:all') {
    exclude group: 'org.json', module: 'json'
}

html: GWT needs also th sources to compile

api 'com.github.SimonIT.gdx-AppWarp:core:master-SNAPSHOT:sources'
api 'com.github.SimonIT.gdx-AppWarp:gwt:master-SNAPSHOT'
api 'com.github.SimonIT.gdx-AppWarp:gwt:master-SNAPSHOT:sources'

and add

<inherits name='de.SimonIT.gdxAppWarp'/>

to your GdxDefinition.gwt.xml.

core: Core needs only the interface

api 'com.github.SimonIT.gdx-AppWarp:core:master-SNAPSHOT'