Skip to content

Commit

Permalink
Cleanup code and add installation in readMe
Browse files Browse the repository at this point in the history
  • Loading branch information
iFanie committed Nov 13, 2018
1 parent 5c0eab4 commit 51cd678
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
RecyclerView adapter with nested items & expand/contract functionality
## Installation
```
coming
implementation 'com.izikode.izilib:accordionrecycler:0.1'
```
## Usage
#### Have your Model Classes implement the ```AccordionRecyclerData``` interface.
Expand Down
3 changes: 1 addition & 2 deletions accordionrecycler/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.izikode.izilib"/>
<manifest package="com.izikode.izilib.accordionrecycler" />
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.izikode.izilib.accordionrecycler.AccordionRecyclerData

abstract class ColorData(

override var viewType: Int,
override val viewType: Int,
override var enclosedDataArray: Array<out AccordionRecyclerData<out ColorData?>>? = null

) : AccordionRecyclerData<ColorData> {
Expand Down

0 comments on commit 51cd678

Please sign in to comment.