Retrieve the physical device ID, OS version, and hardware manufacturer.
Query physical hardware metrics, OS version, and unique installation identifiers. Useful for analytics, support tickets, and conditional UI rendering based on device capabilities.
import nativine from 'nativine';
const info = await nativine.device.getInfo();
// info -> { model: 'Pixel 7', manufacturer: 'Google', osVersion: '13' }
Retrieves a persistent device identifier that survives app reinstalls (Android ID / IDFV):
import nativine from 'nativine';
const deviceId = await nativine.device.getDeviceId();