Advertisement
Guest User

Untitled

a guest
May 26th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. this.platform.ready().then(() => {
  2. // Ativando backgroundMode
  3. cordova.plugins.backgroundMode.enable();
  4.  
  5. // BackgroundMode em segundo plano
  6. cordova.plugins.backgroundMode.on('activate', () => {
  7. this.backgroundMode.disableWebViewOptimizations();
  8.  
  9. setInterval(() => {
  10. // Iniciando leitura da Position do usuario enquanto estiver em backgroundMode
  11. this.locationTrackerProvider.startTracking();
  12. }, 60000);
  13. });
  14.  
  15. // BackgroundMode quando o app estiver fechado
  16. cordova.plugins.backgroundMode.on('deactivate', () => {
  17. setInterval(() => {
  18. // Iniciando leitura da Position do usuario enquanto estiver em backgroundMode
  19. this.locationTrackerProvider.startTracking();
  20. }, 60000);
  21. });
  22. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement