MCPcopy Index your code
hub / github.com/ionic-team/ionic-framework / isAndroid

Function isAndroid

core/src/utils/platform.ts:68–68  ·  view source on GitHub ↗
(win: Window)

Source from the content-addressed store, hash-verified

66const isIOS = (win: Window) => testUserAgent(win, /iPhone|iPod/i) || isIpad(win);
67
68const isAndroid = (win: Window) => testUserAgent(win, /android|sink/i);
69
70const isAndroidTablet = (win: Window) => {
71 return isAndroid(win) && !testUserAgent(win, /mobile/i);

Callers 1

isAndroidTabletFunction · 0.85

Calls 1

testUserAgentFunction · 0.85

Tested by

no test coverage detected