how to check app running in foreground or background in ionic4
   //Subscribe on pause i.e. background         this.platform.pause.subscribe(() => {           //Hello pause           if(localStorage.getItem("LOG_IN") == "YESORANGE") {                 this.loginprofile=  JSON.parse(localStorage.getItem("Loginprofile"));                 this.api.UserLoginStatus({                   loginUserId: this.loginprofile.Id,                   status:"online"                 }).subscribe((res: any) => {                   console.log(res);                 })               }         });            ...