Can someone recommend a good Android Library for W...
# android
i
Can someone recommend a good Android Library for Web Scraping using Kotlin? I've seen a couple of Java libs like Jsoup.
m
Most, if not all, Java libraries can be used by Kotlin/JVM in an Android app. Did you run into a particular problem with one of the Java ones? A quick search turned up https://github.com/skrapeit/skrape.it, though I have not tried it.
i
So I can just use Jsoup java lib along with my Kotlin code? I have not tried it yet.
m
Yes, using JSoup in an Android Kotlin project works. This sample app from Elements of Android Jetpack uses it: https://gitlab.com/commonsguy/cw-jetpack-kotlin/tree/v0.4/Bookmarker
i
Great. Thank you very much!
👍 1