Tagged Questions

6
votes
5answers
2k views

Proguard error: Expecting class path seperator - not sure where I need to put a path in quotes

The error: BUILD FAILED C:\workspace\projectName\add-proguard-release.xml:35: Expecting class path separator ';' before 'Files\eclipse\android-sdk-windows\platforms\android-3\android.jar' in argument ...
5
votes
3answers
4k views

ANT build for Android Proguard obfuscation

Can anyone share with sample/simple obfuscation ANT task for Android? Provided that I do have complete APK and I need just pass *class hru Proguard and then prepare *.dex to build APK
4
votes
2answers
2k views

How do I build an Android project using Ant? (IntelliJ IDE)

I've a project in the IntelliJ IDEA IDE and I want to set up a parallel, production Ant build process that I can extend over time. I have used IntelliJ's feature to create an Ant build file, and it ...
2
votes
2answers
89 views

proguard as ant task

I actually have two related questions: Can predefined constants be expanded in the task declarations as <injar file="${build}/myjar.jar" />? How can I reuse the classpath definition in ...
2
votes
2answers
86 views

How can I tell proguard to assume a package is not used?

I'm attempting to set up proguard for my Android project. We use some pieces of a netty library in our code and I'd like to use Proguard to completely remove the pieces of code that I know aren't ...
2
votes
1answer
245 views

How to properly quote a path in an ant task?

I want to call the <proguard> task in Ant and need to pass it the paths to various JAR files, e.g. the equivalent of: <proguard> -injars /some/path/jar1;/some other path/jar2 ...
2
votes
2answers
259 views

Inserting build target using build.xml only?

I have a build.xml which is capable of compiling and optimizing if I run the build targets individually - "ant compile" followed by "and optimize". The problem is, that I want to run "ant release" ...
2
votes
5answers
288 views

How to setup a good java build environment?

Java/Eclipse. Development works fine. We have either Windows or FreeBSD for build server. To deploy though I would like to do the following (in a very automated way): 1: Pull down everything from ...
1
vote
1answer
104 views

Error when proguard Android project

I have Project A which uses Project B as library project. Both of them are using android-support-v4.jar as referenced library. When I try to build the project A with the ant script, which provided by ...
1
vote
2answers
60 views

Ant with Proguard - java.lang.NoClassDefFoundError

During the build process I get this warning: can't find referenced class com.google.gson.GsonBuilder If I add the library to proguard.cfg with the option -libraryjars (as suggested): -libraryjars ...
1
vote
1answer
683 views

“unknown option: --output” after updating Android SDK from revision 12 to revision 13

I've just updated my android development tools to revision 13. This all went smoothly and I can continue to build in eclipse as usual. However once I try to de a release build with ant my build ...
1
vote
1answer
172 views

Java Ant - how to pass a ProGuard task arguments and use them inside a configuration file?

I have this in my build.xml: <target depends="build-jar" name="proguard"> <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard4.6/lib/proguard.jar" /> ...
1
vote
0answers
95 views

wtkobfuscate argument problem

I Have a ant build with this code : <wtkobfuscate jarfile="${dist}/${product.name}.jar" jadfile="${dist}/${product.name}.jad" verbose="true"> <classpath> <path ...
1
vote
1answer
130 views

Android Build and Obfuscate Libraryproject

I have an android library project. I want to build this project into a .jar I think and put this jar into my /full and my /lite Project. Before doing this I want to obfuscate the library project. Is ...
1
vote
3answers
1k views

Trouble making obfuscation

I'm using Antenna to build, pack and obfuscate a j2me app. Building and packing works fine. The project uses a 3rd party jar that is already obfuscated except by some interfaces. When trying to ...
0
votes
1answer
29 views

Problems compiling an Android App with Ant and Proguard

I have an Android App which consists on different modules. The Main module is using some libs like Google's GSON or the v4.support.package. A custom build script with the right proguard.cfg will build ...
0
votes
0answers
49 views

Internal error occurs when running the java web application after proguard Obfuscation

I am using Proguard for obfuscating the class files used in an java web application developed in struts2 framework in eclipse environment.After performing the proguard operation, the class members are ...
0
votes
1answer
204 views

Proguard on Android Broken?

I used to be able to follow the guide here to set up and run Proguard as part of a build, without any problems. However, since updating to the latest version of the ADT tools, I am having trouble. The ...
0
votes
1answer
45 views

Proguard with Ant: Filtering specific jar files from a folder

I can't seem to find the proper syntax for Proguard to filter out a list of jar files based on their names from a folder. I have a folder project/lib/ that has a mix of third-party and proprietary ...
0
votes
2answers
108 views

Java: How to integrate ProGuard in Jar Project using custom Ant build.xml

I have simple java project which refers to two (2) library jar files. Want to integrate ProGuard. Here's my current build.xml: <?xml version="1.0" ?> <project name="Samples" default="dist" ...
0
votes
1answer
601 views

Android build with Proguard DX SimException local 0000: invalid

I am using Ant > 1.8 + Proguard 4.6 to build my Android project and I've got an Exception during the build process: SimException: local 0000: invalid Please find below the all build log: Buildfile: ...
0
votes
0answers
503 views

java.lang.NoClassDefFoundError Android Ant Eclipse

I'm getting java.lang.NoClassDefFoundError fatal exception when I run my app. It builds and runs fine from Eclipse; it builds in Ant, but throws this exception when installed and run in Emulator. The ...
0
votes
2answers
428 views

Android ant problem (for using ProGuard)

Does anybody know where I can look for an configuration error? I'm getting this error message as soon as I'm trying to compile and to include ProGuard in my project (using the recently released ...
0
votes
3answers
1k views

Exposing inner classes when obfuscating with ProGuard

I'm obfuscating a library with ProGuard using the Ant task. I'm keeping particular class names and their method names when they have a particular annotation (@ApiAll) and I'm requesting that the ...