Latest Added Tutorials
Sample Proguard config file defined in an Android project as follows:
# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose
# Optimization is turned off by default. Dex does not like code run
# through the ProGuard optimize and preverify steps (and performs some
# of these optimizations on its own).
-dontoptimize
-dontpreverify
# Note that if you want to enable optimization, you cannot just
# include optimization flags in your...Continue Reading
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