Skip to content

Commit da7ae4d

Browse files
committed
Finish instructions and finnaly deploy release version to maven central
1 parent 2deaf7b commit da7ae4d

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,25 @@ Default conditions to show:
2020

2121
## Installation
2222

23-
* Manually
23+
It's very simple with gradle ;)
2424

25-
Create in your root project folder a folder called `libraries`.
25+
Add `mavenCentral` as repository source:
2626

27-
Download the library folder and import it into your project and rename `library` to `EasyRatingDialog`.
27+
```gradle
28+
repositories {
29+
mavenCentral()
30+
}
31+
```
2832

29-
Now, to setup with gradle, you need to do the following steps:
33+
And finnaly add this line inside `dependencies { }` section:
34+
35+
```gradle
36+
compile 'com.github.fernandodev.easyratingdialog:easyratingdialog:+'
37+
```
3038

31-
1. In `gradle.settings` add: `':libraries:EasyRatingDialog'`
32-
2. In `gradle.build` at `dependencies` add `compile project(':libraries:EasyRatingDialog')`
39+
The `+` symbol indicates to gradle to get the latest version.
3340

34-
* Gradle Dependency: _**coming soon**_
41+
* See the sample if there are any doubts.
3542

3643
## Using
3744

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1818
# org.gradle.parallel=true
1919

20-
VERSION_NAME=1.0.0-SNAPSHOT
20+
VERSION_NAME=1.0.0
2121
VERSION_CODE=1
2222
GROUP=com.github.fernandodev.easyratingdialog
2323

0 commit comments

Comments
 (0)