File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
2121VERSION_CODE =1
2222GROUP =com.github.fernandodev.easyratingdialog
2323
You can’t perform that action at this time.
0 commit comments