Most voted "proguard" questions
9 questions
Sort by count of
-
15
votes1
answer318
viewsHow do Proguard remove a class method?
I’m not getting Proguard 4.10 to make a method static turn inline. I can only do that with instance methods. For example, this little bit: public final class Calc { private int x = 0; public int…
-
10
votes2
answers973
viewsEnable Proguard on Android app
I did an example project, using SQLCipher, and I’m trying to obfuscate the code with the Proguard, however, after exporting and signing the application, and converting the.Dex classes with the…
-
4
votes1
answer622
viewsMaven with Proguard
Well someone could explain to me how I can use Proguard in the Maven build to obfuscate the web project (War) in the direct deploy for Jetty? <project…
-
2
votes2
answers891
viewsObfuscating Java code with Proguard
Problem: I’m getting warnings of Proguard and with it I can’t outshine my .jar, this is the first time I’ve received these warnings and with that I can’t finish the obfuscation. Image with details…
-
0
votes1
answer18
viewsProguard, how not to change a certain variable
I have a variable in my Java code, and I want to obfuscate the code using Proguard, but there is a variable that I want to keep the name, after obfuscation, because I will use this application in…
-
0
votes0
answers90
viewsError when using Proguard the first time in an Android app
My Gradle is in the following: buildTypes { debug { shrinkResources false minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } release {…
-
0
votes1
answer112
viewsHow to hide final public Static in proguard?
I have the following class package br.com.app1.urls; public class Urlapp { public static final String URL_LOGAR ="url/login"; public static final String URL_CADASTRAR_INCIDENTES ="url/incidentes"; }…
-
0
votes0
answers67
viewsUsing Proguard with Maven in libs in java swing
I obfuscated my jar using the proguard-Maven-plugin plugin, pom.xml and the configuration are these: <build> <plugins> <plugin> <groupId>com.github.wvengen</groupId>…
-
-1
votes1
answer163
viewsHow to make the correct proguard configuration?
How to make the correct configuration of proguard, bringing better security, smaller size and deleting classes when you want or when creating problems? Basically enable default settings in changing…