안드로이드, iOS 버전 테스트

도디·2020년 9월 10일
1

React Native

목록 보기
18/28

도하! 안드로이드, iOS 버전 알아보는 법!

// 안드로이드 버전 감지
import {Platform} from 'react-native';
console.log(Platform.Version);

// iOS 버전 감지
import {Platform} from 'react-native';
const majorVersionIOS = parseInt(Platform.Version, 10);
console.log(majorVersionIOS);
profile
충전중..🤔

0개의 댓글