0
votes
1answer
91 views

Proguard with AbstractModule

The following exception is being thrown when my android app starts up; can't instantiate class com.project.modules.ClientServicesModule; no empty constructor My module class looks like the ...
0
votes
0answers
201 views

Java 7 | Obfuscation with Proguard 4.8

I'm trying to obfuscate my project in java 7 with Proguard 4.8. Here is my maven plugin configuration: <plugin> <groupId>com.pyx4me</groupId> ...
1
vote
2answers
367 views

Looking for a tutorial - ProGuard for Android MAVEN project

Trying to integrate ProGuard in my android-maven project release phase. It seam that I'm missing something, but I can figure out what. I tried the suggested example on the official site but when I ...
1
vote
1answer
437 views

How to obfuscate one jar from war using proguard and maven

I'm a little puzzled by proguard. I have this setting in my pom.xml Firstly, < injar > tag doesn't work...final call of proguard doesn't contain -injars if I use this tag. Secondly, I'm not sure if ...
1
vote
1answer
204 views

mvn proguard: Is there possible obfuscate dependency before copying

I have plugins configuration like below: <project> ... <build> <plugin> <groupId>org.apache.maven.plugins</groupId> ...
1
vote
1answer
164 views

ProGuard: Problems using obfuscated JAR

I have a JAR myapp-logic with classes, some of which are obfuscated and some non-obfuscated. I want to use myapp-logic in a web application called myapp-web. When I add the obfuscated version of ...
2
votes
1answer
599 views

Obfuscating Java code with ProGuard and Maven: Test classes and ClassNotFoundError

I want to obfuscate my library with ProGuard and added following piece of code into pom.xml: <build> <plugins> ... <plugin> ...
2
votes
1answer
205 views

Can an Android Library Project (APKLIB) be obfuscated by Proguard?

I am attempting to obfuscate an Android Library Project (APKLIB), allowing the library to distributed to potential clients for test development without compromising the majority of the source code. ...
2
votes
1answer
472 views

How do you stop Proguard from removing type parameters?

I am currently attempting to obfuscate a series of libraries. My base library, which contains several classes and methods that use type parameters, is unusable by other code due to the type parameters ...
1
vote
1answer
117 views

Obfuscate two JARs separately with Maven / Proguard

I use maven to manage a core package and two appliaction packages that both depends on the core package. For technical reasons, I can't make a full assembly for each application package, which means ...
0
votes
1answer
407 views

Proguard in a Maven + Spring 3 big Web Application

I have been trying all day to obfuscate the web application we are developing (we are going to allow big clients to host it on their servers) and after surfing, searching and trying a lot I am unable ...
1
vote
1answer
205 views

Share apklib file but hide the source code Is it possible?

So I have Android library projects which are built using android-maven-plugin. This results in the generation of .apklib snapshot. This snapshot has all the java source code and resources for that ...
2
votes
1answer
439 views

Android - Maven Build - Proguard - can't find referenced class

At the moment I am trying to setup a maven build for my existing Android application. (had been built with Ant before) While running the proguard obfuscation I am getting a lot of warnings telling me ...
4
votes
3answers
3k views

ProGuard + Maven with Java 7

I'm trying to make ProGuard part of our Maven build process. The problem is that the official Maven plugin is using ProGuard 4.3, which doesn't support Java 7. Is there any easy way to make the plugin ...
2
votes
0answers
320 views

using Proguard in a Maven project with several modules

I can't make Proguard Maven plugin to obfuscate files in a web project. I tried some solutions on Stackoverflow - no luck. My actual application is Vaadin-based packaged with Maven, but I created a ...
0
votes
1answer
55 views

An error occurred in phase mojoExecution with the exception org.apache.maven.plugin.MojoExecutionException: Obfuscation failed (result=1)

i get this exception when i try to run my Proguard plugin for Maven : An error occurred in phase mojoExecution with the exception org.apache.maven.plugin.MojoExecutionException: Obfuscation ...
1
vote
0answers
208 views

including libaries in Maven Proguard plugin

i'm trying to refer to my libary jars through Proguard Maven Plugin , how can i include 'em ? normaly i point at my libaries in the configuration file , it worked when i used to obfuscate using DOS . ...
1
vote
1answer
365 views

Obfuscating an Android Library project / apklib

I have a question regarding how to obfuscate an Android library project. Overall, I'd like to obfuscate an apklib file (or really the .java files for any library project) that contains both .java ...
6
votes
2answers
1k views

Proguard is saying it can't find any classes

I'm using proguard with a spring mvc application and maven. My pom.xml's build section looks like: <build> <finalName>myapp</finalName> <plugins> ...
0
votes
1answer
484 views

How to run proguard in my spring mvc application, no jar but for classes?

Spring mvc applications don't have jars, they have wars (.war or exploded). My maven build creates an exploded war in: /myapp/target/myapp-1.0/ and my classes are in: ...
0
votes
1answer
824 views

Proguard error when try to run with maven

Someone have a "proguard-maven-plugin" standar maven configuration that can I use for a Enterprise Java Application?, and someone knows what of the 4 pom.xml I need to add the configuration?, I spend ...
1
vote
1answer
422 views

Proguard configuration on a Enterprise Java Application

I'm trying to use proguard in a Maven project this is a obfuscate plugin, when I run it I have an error: Failed to execute goal com.pyx4me:proguard-maven-plugin:2.0.4:proguard (default) on project ...
1
vote
2answers
318 views

Maven, Proguard and a jar I don't want

I'm obsfucating a project with the proguard-maven-plugin. Everything works fine except one thing: I don't want the original jar, neither in the target directory nor deployed in the repository. At the ...
1
vote
1answer
3k views

ProGuard with maven-android-plugin

I'm trying to pack my project to APK and then obfuscate it with ProGuard. Here is my pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" ...
1
vote
1answer
472 views

Best way to create maven project to upload missing jars in central repository

ProGuard version 4.5, 4.5.1 and 4.6 have been released, but unfortunately, the corresponding maven artifacts have not been released in central repository: <dependency> ...