We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e65e16 commit 1fd8e1fCopy full SHA for 1fd8e1f
1 file changed
README.md
@@ -6,11 +6,19 @@ ViewGroup backed by RecyclerView.Adapter = magic
6
# Gradle Dependency
7
Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
8
9
-```Gradle
10
-dependencies {
11
- compile 'com.commit451:adapterlayout:1.0.0'
12
-}
13
-```
+Add it in your root build.gradle at the end of repositories:
+
+ allprojects {
+ repositories {
+ ...
14
+ maven { url "https://jitpack.io" }
15
+ }
16
17
+Step 2. Add the dependency
18
19
+ dependencies {
20
+ compile 'com.github.Commit451:AdapterLayout:1.0.0'
21
22
23
# Usage
24
See the sample project for a full sample.
0 commit comments