Latest Added Tutorials
07-03-2015
When you use Jsoup library in a Java project or Android project and compile the project with proguard, then we can face nullpointerexception. To solve this problem, we sould exclude jsoup library from Proguard config file as follows:
-keep public class org.jsoup.** {
public *;
}...Devamını Oku