(evt?: any)
| 1296 | resolve(ok); |
| 1297 | }; |
| 1298 | const onAny = (evt?: any) => { |
| 1299 | if (VERBOSE) |
| 1300 | console.log('[hmr-client] [android] activity event', { |
| 1301 | type: evt?.eventName || 'unknown', |
| 1302 | }); |
| 1303 | if (isReady()) finish(true); |
| 1304 | }; |
| 1305 | try { |
| 1306 | a.on(a.activityStartedEvent || 'activityStarted', onAny); |
| 1307 | a.on(a.activityResumedEvent || 'activityResumed', onAny); |