Most voted "proguard-android" questions
File Proguard Android The Proguard tool shrinks, optimizes, and obscures your code by removing the code used and renaming classes, fields, and methods with semantically obscure names. The result is a smaller apk file size. Which is harder to reverse engineer.
Learn more…4 questions
Sort by count of
-
2
votes1
answer920
viewsProguard.cfg Android file
How do I "obfuscate" my classes, methods, variables and etc in the proguard.cfg Android configuration file? My intention is to hinder decompilation (reverse engineering) of the project.
-
2
votes2
answers161
viewsExporting my project, proguard error
Exporting without proguard all occurs normally, but when active this error: [2014-09-14 01:59:01 - meuapp] Proguard returned with error code 1. See console [2014-09-14 01:59:01 - meuapp] Warning:…
-
1
votes0
answers28
viewsAPK updates not applied correctly
I developed an app 2 years ago and we have updated at Google Play always signing with a jks certificate and encrypting with Proguard. This application has been updated in some versions. Even nay…
-
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"; }…