@keel-ai/device
v0.1.0
Published
Device info (model, manufacturer, OS version) for Keel.
Downloads
227
Maintainers
Readme
@keel-ai/device
Device info — model, manufacturer, OS name + version. Counterpart of
expo-device.
Install
keel install @keel-ai/deviceUsage
import { getDeviceInfo } from '@keel-ai/device';
const d = await getDeviceInfo();
console.log(d.modelName); // "iPhone15,3" / "Pixel 8 Pro"
console.log(d.manufacturer); // "Apple" / "Google"
console.log(d.osName); // "iOS" / "Android"
console.log(d.osVersion); // "17.5" / "14"Platform mapping
| Field | iOS | Android |
|---|---|---|
| modelName | utsname.machine (e.g. "iPhone15,3") | Build.MODEL |
| manufacturer | "Apple" | Build.MANUFACTURER |
| osName | "iOS" / "iPadOS" | "Android" |
| osVersion | UIDevice.current.systemVersion | Build.VERSION.RELEASE |
