Skip to content

Commit

Permalink
Release Version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStahlfelge committed Jul 11, 2017
1 parent 5da1260 commit 734bb1f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,13 @@ See the corresponding demo app https://github.com/MrStahlfelge/gdx-gamesvcs-app

## Installation

At the moment, there is no stable release version but only a snapshot version. You should consider to build the packages from source yourself. To do so, clone or download this repository, then open it in Android Studio. Perform the following command to compile and upload the library in your local repository:

gradlew clean uploadArchives -PLOCAL=true

Without doing that, you will get my latest push to the public repository.

In any case, you can integrate the lib into your project by adding the dependencies to your `build.gradle` file.
This project is published to the Sonatype Maven repository. You can integrate the lib
into your project by just adding the dependencies to your `build.gradle` file.

Define the version of this API right after the gdxVersion:

gdxVersion = '1.9.6'
gamsvcsVersion = '0.0.1-SNAPSHOT'
gamsvcsVersion = '0.0.1'

Core:

Expand All @@ -65,6 +60,13 @@ and add a line to `GdxDefinition.gwt.xml` and `GdxDefinitionSuperdev.gwt.xml`:

After including the dependencies and refreshing, you can use the `NoGameServiceClient` in your project. For using another Gameservice, add its dependencies according to its [wiki page](https://github.com/MrStahlfelge/gdx-gamesvcs/wiki)or implement your own client against `IGameServiceClient`.

### Building from source
To build from source, clone or download this repository, then open it in Android Studio. Perform the following command to compile and upload the library in your local repository:

gradlew clean uploadArchives -PLOCAL=true

See `build.gradle` file for current version to use in your dependencies.

## Usage

A good library should be easy to use (let me know what you think of this lib).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ext {
GROUPID = 'de.golfgl.gdxgamesvcs'
VERSION = '0.0.1-SNAPSHOT'
VERSION = '0.0.1'

}

Expand Down

0 comments on commit 734bb1f

Please sign in to comment.