v0.0.3
mobile_device_identifier
모바일 기기(안드로이드/아이오스)에서 고유 ID를 얻는 데 사용하는 플러터 패키지
90좋아요 1만30일 다운로드140Pub 점수
AndroidiOS
모바일 기기(안드로이드/아이오스)에서 장치 ID를 얻기 위한 플러터 라이브러리
{"sdk":"flutter"}^2.1.6{"sdk":"flutter"}^3.0.1아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Flutter package to obtain unique ID from mobile device (android / ios) with uninstall resistant
Android minSdkVersion = 21
iOS minimum version = 11
final _mobileDeviceIdentifier = MobileDeviceIdentifier().getDeviceId();
You can combined with any encoding method to beautify string id. For example use Base64 encode with return value like
RjFGMUJDNUItQkJERC00NjZCLUE2MzgtQzRDNUZGMDdCQzhF
For android device, this package use UUID with MediaDrm to generate unique ID. With that, unique ID will not change even after uninstalling application
For iPhone device, this package use UUID with JNKeychain to generate unique ID to make ID still same even after reinstall application