Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
welsinga committed Jul 18, 2014
1 parent 90e2ba8 commit 8024c6e
Showing 1 changed file with 47 additions and 1 deletion.
48 changes: 47 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Currently the library supports the following Social Channels:
- Google+™

## [Changelog](https://github.com/welsinga/SocialURLShare/wiki/Changelog)
Current version: -
Current version: 0.1.0


## Usage
Expand All @@ -31,6 +31,52 @@ Implementation example: sharing to Twitter™
sharer.share();
```

## Build
### Gradle

#### From maven central

Add maven central to your `build.gradle`:

```groovy
buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
}
```

Then declare SocialURLShare within your dependencies:

```groovy
dependencies {
...
compile('com.wiebe-elsinga.android.library:socialurlshare:0.1.0')
}
```


### Maven

#### From maven central

To use SocialURLShare within your Maven build simply add

```xml
<dependency>
<groupId>com.wiebe-elsinga.android.library</groupId>
<artifactId>socialurlshare</artifactId>
<version>${socialurlshare.version}</version>
<type>aar</type>
</dependency>
```

to your pom.xml

## License

Copyright 2014 Wiebe Elsinga
Expand Down

0 comments on commit 8024c6e

Please sign in to comment.