[
https://issues.apache.org/jira/browse/CB-13585?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16257132#comment-16257132
]
Valentin edited comment on CB-13585 at 11/17/17 3:48 PM:
---------------------------------------------------------
LOG REPORT
Cordova --v 7.0.1
Xiaomi Redmi 3x
{code:java}
Received Event: deviceready
index.js:37 wifi
index.js:38 pause Fri Nov 17 2017 18:08:48 GMT+0300 (MSK)
index.js:45 wifi
index.js:46 online Fri Nov 17 2017 18:24:29 GMT+0300 (MSK)
index.js:33 wifi
index.js:34 resume Fri Nov 17 2017 18:24:31 GMT+0300 (MSK)
index.js:37 wifi
index.js:38 pause Fri Nov 17 2017 18:25:13 GMT+0300 (MSK)
// After 5 minutes, I restart the application (this is the first time, it
usually played only 10 minutes)
// further why that that is caused offline, though connection with the Internet
stable through wifi
// Here you can see that the connection to the Internet NONE
index.js:41 none
index.js:42 offline Fri Nov 17 2017 18:30:40 GMT+0300 (MSK)
index.js:33 none
index.js:34 resume Fri Nov 17 2017 18:30:42 GMT+0300 (MSK)
index.js:37 none
{code}
was (Author: devn):
LOG REPORT
Cordova --v 7.0.1
Xiaomi Redmi 3x
Received Event: deviceready
index.js:37 wifi
index.js:38 pause Fri Nov 17 2017 18:08:48 GMT+0300 (MSK)
index.js:45 wifi
index.js:46 online Fri Nov 17 2017 18:24:29 GMT+0300 (MSK)
index.js:33 wifi
index.js:34 resume Fri Nov 17 2017 18:24:31 GMT+0300 (MSK)
index.js:37 wifi
index.js:38 pause Fri Nov 17 2017 18:25:13 GMT+0300 (MSK)
// After 5 minutes, I restart the application (this is the first time, it
usually played only 10 minutes)
// further why that that is caused offline, though connection with the Internet
stable through wifi
// Here you can see that the connection to the Internet NONE
index.js:41 none
index.js:42 offline Fri Nov 17 2017 18:30:40 GMT+0300 (MSK)
index.js:33 none
index.js:34 resume Fri Nov 17 2017 18:30:42 GMT+0300 (MSK)
index.js:37 none
> Called "offline" instead "resume" event after sleep
> ---------------------------------------------------
>
> Key: CB-13585
> URL: https://issues.apache.org/jira/browse/CB-13585
> Project: Apache Cordova
> Issue Type: Bug
> Components: cordova-plugin-network-information
> Reporter: Valentin
>
> Hi.
> I using
> {code:java}
> "cordova-android": "^6.2.3",
> "cordova-ios": "^4.4.0",
> "cordova-plugin-crosswalk-webview": "^2.3.0",
> "cordova-plugin-firebase": "^0.1.21",
> "cordova-plugin-inappbrowser": "^1.7.1",
> "cordova-plugin-network-information": "^1.3.3",
> "cordova-plugin-splashscreen": "^4.0.3",
> "cordova-plugin-statusbar": "^2.2.3",
> "cordova-plugin-whitelist": "^1.3.2",
> "cordova-plugin-x-toast": "^2.6.0"
> {code}
> Cordova version: 7.0.1
> I listen events in my deviceReady function
> {code:java}
> document.addEventListener("resume", function() {
> console.log(window.navigator.connection.type);
> console.log('resume', (new Date));
> }, false);
> document.addEventListener("pause", function() {
> console.log(window.navigator.connection.type);
> console.log('resume', (new Date));
> }, false);
> document.addEventListener("offline", function() {
> console.log(window.navigator.connection.type);
> console.log('resume', (new Date));
> }, false);
> document.addEventListener("online", function() {
> console.log(window.navigator.connection.type);
> console.log('resume', (new Date));
> }, false);
> {code}
> Everything works fine, until I lock my Android for more than 10 minutes
> After I go into the application I do not trigger the "resume" trigger, and
> triggers "offline" and the window.navigator.connection.type returns none.
> Now the application does not work the Internet, although in other
> applications the network works.
> This happens until I turn off and turn on the wifi.
> After that on the logs I see how the trigger was called "resume"
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]