I'm developing an android library. as i say i want to make it obfuscate. I have searched a lot but i just reached the following points:
1- Eclipse doesn't run proguard on Android Project
2- The only way to make a library obfuscate is that to use it in another application and run proguard on that application and then decompile the application and fetch the library, but for god's sake it's a bad solution.
is anyone has any idea to solve my problem?
i have already changed my project.properties
to this
target=android-21
android.library=true
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
but of course it's not working! :))