I have some questions about debug mode. I have app with file buildconfig.debug where is
debug = true
- Is that means, my app is in debug mode
- How can I change this in debug=false
- Can I set android:debuggable=”false” in manifest so that my app be in relase mode
Thanks.
EDIT: The easiest way to create a signed apk if you’re using Eclipse with the ADT plugin, just click File->Export and the Export Wizard will guide you through the process.
“To export an unsigned APK from Eclipse, right-click the project in the Package Explorer and select Android Tools > Export Unsigned Application Package.” Then you have to sign it using the Jarsigner tool, etc. See the instructions link below. There are also instructions for if you’re not using Eclipse.
Link to Instructions
Make sure you uninstall the debug mode apk from your device before installing the release mode apk or you might get problems.