The property "android:debuggable" is set to "true" in the AndroidManifest.xml even when application is built in the release mode

This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal.

1. This is an intended Kony behaviour. APK present in the workspace (Ex:D:Workspace_6.5\temp\AppName\build\luaandroid\dist) will have the property “debuggable as true”.

2. This gives an option for developers to cross-check the application before moving to production.

3. To move the application into production developer should use the “release-unsigned.apk” file present build path

Ex : D:Workspace\temp\Appname\build\luaandroid\dist\AppName\bin .

4. And then sign the APK and publish to play store.

Thank you for sharing this helpful information!