+

Search Tips   |   Advanced Search

Develop hybrid applications for Android

Develop hybrid applications for Android as detailed here.

When Android runs in debuggable mode, which can be set in the application's manifest file, unintended consequences can occur. One consequence is that SSL errors are not displayed by Cordova, such as when the server certificate is not trusted.

Important: When building an Android application for deployment to a production environment, do not build it to run in debuggable mode. Ensure that the AndroidManifest.xml file does not include an android:debuggable attribute, or set its value to false. See Configure Your Application for Release.

If we are targeting devices on API level below 14, add the following permission to the AndroidManifest.xml file: <uses-permission android:name="android.permission.GET_TASKS"/>. This permission is required for the heartbeat functionality to function properly.


Parent topic: Develop hybrid applications