How to solve "exception firing resume/pause event from native" Cordova Android

eeadev

My android phonegap/cordova application keeps getting this message:

"exception firing resume/pause event from native"

It appears in my logcat

I/chromium(22500): [INFO:CONSOLE(1)] "exception firing pause event from native", source: file:///android_asset/www/login_page.html (1)

and these are the first 4 lines of login_page.html:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />

I am using cordova 3.5 and JQueryMobile. Though my application is still working, what is the reason/meaning of this exception?

mvermand

Are you sure you added the cordova.js to your scripts in your login_page.html?

When the android app receives a 'pause' event, the following code is issues:

this.loadUrl("javascript:try{cordova.fireDocumentEvent('pause');}catch(e){console.log('exception firing pause event from native');};");

So, it is probably related to the absence of variable cordova in the context. Adding cordova.js will put variable cordova in the context and cordova.fireDocumentEvent will be there, avoiding the exception.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to solve this errors Ant, add platform android and cordova build android failure

From Dev

How to solve "exception firing resume/pause event from native" Cordova Android

From Dev

how to solve onTouchListener android

From Dev

How to solve NullPointerExpression in Android?

From Dev

how to solve onTouchListener android

From Dev

How to solve Execution failed for task transformClassesWithDexForArmv7Debug on Cordova

From Dev

How to debug a cordova plugin for Android

From Java

How to check cordova android version of a cordova/phonegap project?

From Dev

How to solve null object reference in viewpager android

From Dev

How to solve Android Error type 3?

From Dev

How to Solve Low Disk Space for Android Studio?

From Dev

How to solve this situation about ffmpeg with Android NDK

From Dev

How to solve NameValuePair cannot be a String in Android

From Dev

How do i solve this problem? Android Studio

From Dev

How to solve NoClassDefFoundError: Apache Commons Lang Android

From Dev

how to solve android.os.NetworkOnMainThreadException in json

From Dev

OutputStreamWriter is not working in android higher version, How to solve?

From Dev

how solve "unfortunately android app has stopped"

From Dev

How to solve undefined getactivity in android application?

From Dev

How to solve No such table error in Android Sqlite

From Dev

how to solve this with android waiting for service surfaceflinger?

From Dev

How to solve scroll issue in GridView in android?

From Dev

How to solve NameValuePair cannot be a String in Android

From Dev

How to solve the compile error in Android NDK?

From Dev

How to solve android app install error 110?

From Dev

Android progrees dialog error how to solve this?

From Dev

How to solve Android Studio rendering problems?

From Dev

how to solve android.os.networkonmainthreadexception

From Dev

how to solve compile error android studio?

Related Related

  1. 1

    How to solve this errors Ant, add platform android and cordova build android failure

  2. 2

    How to solve "exception firing resume/pause event from native" Cordova Android

  3. 3

    how to solve onTouchListener android

  4. 4

    How to solve NullPointerExpression in Android?

  5. 5

    how to solve onTouchListener android

  6. 6

    How to solve Execution failed for task transformClassesWithDexForArmv7Debug on Cordova

  7. 7

    How to debug a cordova plugin for Android

  8. 8

    How to check cordova android version of a cordova/phonegap project?

  9. 9

    How to solve null object reference in viewpager android

  10. 10

    How to solve Android Error type 3?

  11. 11

    How to Solve Low Disk Space for Android Studio?

  12. 12

    How to solve this situation about ffmpeg with Android NDK

  13. 13

    How to solve NameValuePair cannot be a String in Android

  14. 14

    How do i solve this problem? Android Studio

  15. 15

    How to solve NoClassDefFoundError: Apache Commons Lang Android

  16. 16

    how to solve android.os.NetworkOnMainThreadException in json

  17. 17

    OutputStreamWriter is not working in android higher version, How to solve?

  18. 18

    how solve "unfortunately android app has stopped"

  19. 19

    How to solve undefined getactivity in android application?

  20. 20

    How to solve No such table error in Android Sqlite

  21. 21

    how to solve this with android waiting for service surfaceflinger?

  22. 22

    How to solve scroll issue in GridView in android?

  23. 23

    How to solve NameValuePair cannot be a String in Android

  24. 24

    How to solve the compile error in Android NDK?

  25. 25

    How to solve android app install error 110?

  26. 26

    Android progrees dialog error how to solve this?

  27. 27

    How to solve Android Studio rendering problems?

  28. 28

    how to solve android.os.networkonmainthreadexception

  29. 29

    how to solve compile error android studio?

HotTag

Archive