https://github.com/simonit/gdx-appwarp
AppWarp for libgdx
https://github.com/simonit/gdx-appwarp
android app42 appwarp gwt hacktoberfest libgdx libgdx-multiplayer libgdx-utilities realtime sdk shephertz
Last synced: 17 days ago
JSON representation
AppWarp for libgdx
- Host: GitHub
- URL: https://github.com/simonit/gdx-appwarp
- Owner: SimonIT
- License: apache-2.0
- Created: 2019-12-20T14:34:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-05-19T04:56:04.000Z (about 1 year ago)
- Last Synced: 2025-08-19T21:35:47.534Z (10 months ago)
- Topics: android, app42, appwarp, gwt, hacktoberfest, libgdx, libgdx-multiplayer, libgdx-utilities, realtime, sdk, shephertz
- Language: JavaScript
- Homepage:
- Size: 377 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gdx-AppWarp
[](https://jitpack.io/#SimonIT/gdx-AppWarp)
[](https://github.com/SimonIT/gdx-AppWarp/blob/master/LICENSE)
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](https://github.com/shephertz/AppWarp_JAVA_SDK_JAR) and for gwt version 2.1 of the [AppWarp JS SDK](https://github.com/shephertz/AppWarp_JS_HTML5_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:
```groovy
api 'com.github.SimonIT.gdx-AppWarp:java:master-SNAPSHOT:all'
```
android:
Android contains already the json dependency, so we exclude it
```groovy
api('com.github.SimonIT.gdx-AppWarp:java:master-SNAPSHOT:all') {
exclude group: 'org.json', module: 'json'
}
```
html:
GWT needs also th sources to compile
```groovy
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
```xml
```
to your _GdxDefinition.gwt.xml_.
core:
Core needs only the interface
```groovy
api 'com.github.SimonIT.gdx-AppWarp:core:master-SNAPSHOT'
```