generator-react-native-tvos
Version:
React Native tvOS application generator
16 lines (14 loc) • 497 B
JavaScript
import DeviceInfo from 'react-native-device-info';
export default {
uuid: DeviceInfo.getUniqueID(),
model: DeviceInfo.getModel(),
name: DeviceInfo.getDeviceName(),
country: DeviceInfo.getDeviceCountry(),
bundleId: DeviceInfo.getBundleId(),
version: DeviceInfo.getVersion(),
build: DeviceInfo.getBuildNumber(),
locale: DeviceInfo.getDeviceLocale(),
systemName: DeviceInfo.getSystemName(),
systemVersion: DeviceInfo.getSystemVersion(),
isEmulator: DeviceInfo.isEmulator(),
};