Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 테두리굵기
- Visual Studio Code
- border-width
- aab 배포
- error
- oh-my-zsh
- angular
- 자바스크립개념
- change detection
- zsh
- ion-range
- ChangeDetectorRef
- VSCode
- php
- typescript
- hashchange
- Sentry
- getElementsByClassName
- code .
- sealize
- NVM
- rxjs
- angular5
- Git
- 이미지바꾸기
- fromEvent
- IONIC3
- JavaScript
- Ionic
- 변화감지
Archives
- Today
- Total
hsunny study blog
[plugin]cordova-plugin-device uuid quirk 본문
네이티브와의 연동을 위해 사용한 cordova-plugin-device를 추가하고 device.uuid 속성을 이용하여 디바이스를 구분했다.
device.uuid : Get the device's Universally Unique Identifier
Android에서는 uuid가 고유한 값이라, 앱을 삭제하고 다시 깔아도 유지되지만, iOS에서는 삭제하고 다시 깔면 값이 바뀌는 문제가 있었다.
.
.
.
iOS에서 uuid는 iOS5부터 사용됐고, 보통 서버와 연동하여 기기를 식별하는데 쓰였다.
uuid값이 기기의 고유값은 맞지만 생성할 때마다 값이 바뀌어, 앱을 처음 실행할 때 저장해두고 불러오는 방식으로 쓰인다.
하지만 앱을 삭제할 경우 앱내 저장된 값도 같이 삭제되니 이를 방지하기 위해 기기내 저장소인 키체인을 이용한다.
(키체인에 저장된 값도 공장초기화할 경우에는 사라진다.)
*하이브리드 앱에 활용하기 위해 사용한 플러그인: cordova-plugin-ios-keychain
참고:
https://en.wikipedia.org/wiki/Universally_unique_identifier
https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-device
https://github.com/ionic-team/cordova-plugin-ios-keychain
'programming > IONIC' 카테고리의 다른 글
[Firebase] FCM (Firebase Clouding Messaging) + Ionic3 [3] (0) | 2018.06.25 |
---|---|
[Firebase] FCM (Firebase Clouding Messaging) + Ionic3 [2] (0) | 2018.06.19 |
마켓으로 바로 이동하는 링크 (0) | 2018.03.28 |
[iOS에러] Your application might be rejected by Apple if you Store too much data. (0) | 2017.07.22 |
[iOS에러]Unable to validate your application. (0) | 2017.06.25 |