README.md uses Depricated code!
See original GitHub issuethe sample in README.MD
the use of kotlinandroidextensions
can you update please!
sais
'GroupieViewHolder' is deprecated. Kotlin-Android-Extensions is deprecated since 1.4.20, therefore so is the `kotlin-android-extensions` integration in Groupie. Use `groupie-viewbinding` instead.
import com.xwray.groupie.kotlinandroidextensions.Item
import com.xwray.groupie.kotlinandroidextensions.GroupieViewHolder
import kotlinx.android.synthetic.main.song.*
class SongItem(private val song: Song) : Item() {
override fun getLayout() = R.layout.song
override fun bind(viewHolder: GroupieViewHolder, position: Int) {
viewHolder.title.text = song.title
viewHolder.artist.text = song.artist
}
}
Library version 2.9.0
Issue Analytics
- State:
- Created 2 years ago
- Comments:8
Top Results From Across the Web
code-gov-harvester-deprecated/README.md at master - GitHub
DEPRECATION WARNING. This repository is considered deprecated and will be archived. For the new version of this tool please go to GSA/code-gov-harvester.
Read more >types-Deprecated - PyPI
This is a PEP 561 type stub package for the Deprecated package. It can be used by type-checking tools like mypy, PyCharm, pytype...
Read more >Dealing with Bugs/Deprecated Code in Popular Github Repos
Popular papers often have code on Github, but the authors are super busy writing new papers, so you may notice that they stop...
Read more >How To Deprecate A Repository on GitHub | by Richard Littauer
Change the GitHub description. · Ask people to use a different project, which solves the same problem as yours (and hopefully has more...
Read more >pyDeprecate | Simple tooling for marking deprecated functions ...
CI testing Code formatting codecov CodeFactor pre-commit.ci status ... called function (for func deprecation); used arguments (for argument deprecation).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Jitpack build says
Therefore you are probably missing the Jitpack.io repository from your settings.gradle. @MohsinAShaikh
Thank you for helping me out it works for me just by adding jitpack.io in settings.gradle. @Zhuinden