-
-
Save aparajita/0bcf6e74ad0883474219eda37bd1f8ab to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export default class AppDelegate extends UIResponder { // eslint-disable-line | |
applicationPerformFetchWithCompletionHandler(application, completionHandler) { | |
console.log('App is running in background') | |
// Check for new data | |
const newData = true | |
// If new data exists, initiate a local notification | |
if (newData) { | |
// Let the OS know that there were new data and complete the task | |
completionHandler(true) | |
} else { | |
// Otherwise, let the OS know there is no new data and complete the task | |
completionHandler(false) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment