-
안드로이드 기본앱 삭제하기IT 2020. 5. 3. 11:47반응형
안드로이드폰을 구매하면 기본으로 설치된 앱들이 있다(사용하지 않는)
요즘은 기본적으로 사용안함으로 설정이 가능하지만
기본앱들이 그래도 설치되어 있는 것도 찜찜하고 일부(샤오미) 제조사들은
기본 앱들이 자료를 수집하거나 유출하는 경우도 있다
https://fossbytes.com/xiaomi-feels-misunderstood-after-claims-of-web-data-being-recorded/
Xiaomi Feels "Misunderstood" After Claims Of Web Data Being Recorded
A researcher claimed Xiaomi was recording Google queries, websites visited, items viewed on the news feed. In the blog post, Xiaomi has claimed the data collected is aggregated and is used for internal analysis. Moreover, everything was user consented and
fossbytes.com
뭐 여러가지 이유로 기본앱 중 사용하지 않는 것은 완전히 삭제하는 것이 좋다
삭제 하는 방법에 대한 내용은 인터넷에 많다
https://www.xda-developers.com/uninstall-carrier-oem-bloatware-without-root-access/
불러오는 중입니다... 먼저 ADB를 이용해 삭제해야 하므로
https://developer.android.com/studio/releases/platform-tools?hl=ko
SDK 플랫폼 도구 출시 노트 | Android 개발자 | Android Developers
Android SDK 플랫폼 도구는 Android SDK의 구성요소입니다.
developer.android.com
platform-tools 을 먼저 다운을 받는다
1. 휴대폰 연결을 위해 제조사의 USB Dirver를 다운받아 설치한다
google usb driver는
https://developer.android.com/studio/run/win-usb?hl=ko
Google USB 드라이버 가져오기 | Android 개발자 | Android Developers
Google USB 드라이버는 Google 기기로 adb 디버깅을 실행하려는 경우 Windows에 필요합니다.
developer.android.com
에서 다운로드 받는다
2. 다운받은 platform-tools를 적당한 폴더에 풀어서 준비한다
3. 폰을 USB Debuuging을 활성화 한다설정에서 휴대폰의 Build Nunber를 7회 이상 다다닥 터치를 하면 개발자 옵션이 사용가능해 지고
개발자 설정에서 USB 디버깅을 활성화 한다
4. 휴대폰을 컴퓨터와 연결
"file transfer (MTP)" 모드로 연결한다
5. adb shell 명령어로 기본앱을 삭제하는 명령어를 실행 한다
adb shell pm uninstall -k --user 0 '<OEM/Carrier/App Name>' 문제는 '<OEM/Carrier/App Name>' 이름을 알수가 없다
간단한 방법으로는
https://play.google.com/store/apps/details?id=com.ubqsoft.sec01&hl=en_US
App Inspector - Apps on Google Play
Inspect the detailed informations of all apps installed. Shows permissions used by apps. Shows apps ordered by install time and usage. Can extract(download) APK file from installed applications. (Downloaded file will be saved in Downloads folder) Included
play.google.com
을 설치하면
그림과 같이 패키지<com.google.android.apps.plus> 명을 알수가 있다
패키지 명을 확인한 후
adb shell pm list packages | grep '<OEM/Carrier/App Name>' 윈도 시스템에서는 grep 대신 findstr
명령어로 제대로 설치되어 있는 것이 확인되면 uninstall 명령어로 삭제하면 끝
반응형'IT' 카테고리의 다른 글
LG G7 안드로이드10 업데이트 (0) 2020.05.18 le Max 2 Lineage OS 17.1 올리기 (0) 2020.05.17 Asus bluecave 3.0.0.4.384.46468 firmware 문제 (4) 2020.05.01 cmd를 대신할 cmder (0) 2020.04.12 Ubuntu 최신 릴리즈 버전으로 업그레이드 하기 (0) 2020.04.12