Skip to content

Commit

Permalink
Added Quick Fixes section
Browse files Browse the repository at this point in the history
  • Loading branch information
harsh-2711 authored Jun 15, 2019
1 parent 85c7d33 commit 1ba2079
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,34 @@ public class MainActivity extends AppCompatActivity {
}
```

#### Quick Fixes

If you are facing this error

```
error: cannot access RecyclerView
class file for android.support.v7.widget.RecyclerView not found
```

and/or this one

```
error: method does not override or implement a method from a supertype
```

and/or this one
```
error: cannot find symbol constructor ()
```

there should be a problem with the recycler view version in the project. A quick fix would be to add

```
implementation "com.android.support:recyclerview-v7:28.0.0"
```

in the app level dependencies

### Documentation

The documentation for appbase-search-widget library is hosted on [GitHub pages](https://harsh-2711.github.io/appbase-search-widget/)

0 comments on commit 1ba2079

Please sign in to comment.