Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsNSH authored Aug 4, 2019
1 parent ea2854c commit ef6c50b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ allprojects {
Add the dependency in your App build.gradle:
```groovy
dependencies {
implementation 'com.github.ThisIsNSH:CandyView:1.1'
implementation 'com.github.ThisIsNSH:CandyView:1.0'
}
```

Expand All @@ -45,8 +45,8 @@ class ExampleActivity extends Activity {
// Initialize CandyView object
CandyView candyView = findViewById(R.id.candy);

// Create RecyclerView using make(Context, Adapter Layout, Data List, Data Model Class)
candyView.make(this, R.layout.adapter_layout, data_list, Model.class);
// Create RecyclerView using make(Context content, int Layout, List<Model> Data, Model Class)
candyView.make(this, R.layout.adapter, dataList, Model.class);

}

Expand Down

0 comments on commit ef6c50b

Please sign in to comment.