Exporting without proguard everything happens normally, but when you activate 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: android.support.v4.app.Notificati...
How do I "overshadow" my classes, methods, variables, and so on in the Android proguard.cfg configuration file? My intention is to make it difficult to decompile (reverse engineer) the project.
I've developed an app 2 years ago and have been upgraded to Google Play by always signing with a jks certificate and encrypting it with ProGuard. This app has been updated in some versions.
Even not using "smart updates" that Android allows...
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";
}
I would like to know how to configure...