Last active
September 12, 2019 01:40
-
-
Save patrikengborg/5f573c5096b0d0256a89780b65a22e8f to your computer and use it in GitHub Desktop.
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
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