I need to build my android app with my release keystore, because I need to test some in-app purchase stuff. However it would be super nice to debug it with eclipse (juno).
So is there a simple way to do that or have anybody created an ant script to do that?
I guess I must set android:debuggable="true" in the android manifest file and build / sign my app with the release key. How can I connect the eclipse debugger with this built Version of my app?
I found the solution, directly in Eclipse, without ant:
To enable debbuging to your build do the following:
proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
now your app will stop and opens the debugger perspective, when you reach a breakpoint.