I'm using eclipse to compile a large project with more than 65k method count. I'm using proguard to reduce method count number as specified in official documentation: https://developer.android.com/tools/building/multidex.html
Remove unused code with ProGuard - Configure the ProGuard settings for your app to run ProGuard and ensure you have shrinking enabled for release builds. Enabling shrinking ensures you are not shipping unused code with your APKs.
It works fine because if i sign my app with my release key the method count reduces to 43K.
The problem is that if i try to launch my app with PLAY button (it means using debug.keystore, without signing it in release mode), eclipse is not using proguard and it is showing me this error without leaving me test my app:
Dex Loader Unable to execute dex: method ID not in [0, 0xffff]: 65536
It is mandatory for me to use Eclipse some months more, until we are prepared to migrate to Android Studio with this huge project, so i need to reduce method count when launching with debug mude, so i need to apply proguard launching in debug mode with eclipse. ¿How can it be donde?
Thanks