My project uses spring for IoC. After obfuscation the application context fails to find the bean since it's class name has been changed. I tried to use -adaptresourcefilecontents option to get context.xml file be updated according to the class name, but it didn't work: the file wasn't changed. Any ideas?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Try to add file filter, I don't know if proguard looks at xml file as well.

Also, the documentation mentions changing only class names. Since Spring injections usually work on properties you will have a problem identifying the right setters.

link|improve this answer
I tried to use file filter, it didn't work. Seems it really doesn't process xml files. Good point regarding the method names, thanks for the note. – voldemar Nov 17 '09 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.