We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e256bd1 commit 44788fcCopy full SHA for 44788fc
README.md
@@ -3,7 +3,21 @@ Never code any boilerplate RecyclerAdapter again!
3
This library will make it easy and painless to map your data item with a target ViewHolder.
4
5
# Gradle
6
-Dependency from jcenter or maver is coming soon
+#### Step 1. Add the JitPack repository to your build file
7
+```groovy
8
+allprojects {
9
+ repositories {
10
+ ...
11
+ maven { url 'https://jitpack.io' }
12
+ }
13
+}
14
+```
15
+#### Step 2. Add the dependency
16
17
+dependencies {
18
+ compile 'com.github.manneohlund:smart-recycler-adapter:1.0.0'
19
20
21
22
# Usage
23
### Basic adapter creation
0 commit comments