UNPKG

@aws-amplify/core

Version:
21 lines (18 loc) 653 B
import { Dimensions, Platform } from 'react-native'; import { ConsoleLogger } from '../../Logger/ConsoleLogger.mjs'; // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 const logger = new ConsoleLogger('getClientInfo'); const getClientInfo = () => { const dim = Dimensions.get('screen'); logger.debug(Platform, dim); const OS = 'android'; const { Version } = Platform; return { platform: OS, version: String(Version), appVersion: [OS, String(Version)].join('/'), }; }; export { getClientInfo }; //# sourceMappingURL=getClientInfo.android.mjs.map