Articles

Affichage des articles associés au libellé integrate jsoup in android studio

How to install, integrate JSOUP on Android Studio

Image
How to install, integrate JSOUP on Android Studio To install Jsoup on android Studio is very easy. Jsoup allows you to take information that is on a web page and then display it in a TextView or in a TextArea in your android application it's really convenient because it allows to store information on a server instead of putting it in a String within the application in short this saves storage space. Etaple 1: Go to this website: https://jsoup.org/download you can choose to download the .jar Jsoup or simply add: compile 'org.jsoup: jsoup: 1.11.2' In Gradle build in android studio Stage 2: top left in android studio click on Synchronize Step 3: Wait until it finishes synchronizing and voila. it's over now you can add JSOUP code in your application. Example: Here is an idea of ​​what JSOUP can do, This application allows using the voice command to display information that is on a server ie a web page inside a Textview in saying the name of ...