This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2019-12-19T15:29:42.810Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A little workaround to proper handle resume and paused events on Android | |
*/ | |
var platformTools = require('bencoding.android.tools').createPlatform(); | |
var wasInForeGround = true; | |
//to be executed on every activity staus change | |
//check if it's passing from foreground to background or viceversa | |
function checkStatusSwitch() { | |
var isInForeground = platformTools.isInForeground(); |