앱 삭제
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
수동으로 앱 삭제하기
기기 DPC에서 앱을 제한하지 않는 한 사용자는 기기에서 앱을 수동으로 삭제할 수 있습니다. 관리 Google Play 스토어에서 앱을 계속 사용할 수 있는 경우 사용자는 앱을 다시 설치할 수 있습니다.
사용자가 앱을 삭제하지 못하도록 차단
DPC 수준에서 DevicePolicyManager.setUninstallBlocked
를 사용하여 사용자가 특정 앱을 삭제하지 못하게 할 수 있습니다.
관리 Play 스토어에서 앱 삭제
Device
의 policy
에서 앱을 삭제하면 해당 기기에서 앱을 새로 설치하거나 업데이트할 수 없습니다. 하지만 앱이 자동으로 제거되지는 않습니다.
앱 삭제하기
사용자의 기기에서 앱을 삭제하려면 Installs.delete
를 호출합니다.
유료 앱 라이선스 복원
앱을 제거해도 앱에 관한 사용자의 사용 권한은 삭제되지 않습니다. Entitlements.delete
를 호출하여 사용자의 사용 권한을 분리하고 사용자의 앱 라이선스를 해제합니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-31(UTC)
[null,null,["최종 업데이트: 2025-08-31(UTC)"],[[["\u003cp\u003eUsers can manually delete apps unless restricted by device policies, and can reinstall them if available in the managed Google Play store.\u003c/p\u003e\n"],["\u003cp\u003eDevice Policy Controllers (DPCs) can prevent users from deleting specific apps.\u003c/p\u003e\n"],["\u003cp\u003eRemoving an app from a device's policy in the managed Play Store prevents new installations and updates but doesn't automatically uninstall it.\u003c/p\u003e\n"],["\u003cp\u003eTo delete an app from a user's device, use the \u003ccode\u003eInstalls.delete\u003c/code\u003e API call.\u003c/p\u003e\n"],["\u003cp\u003eUninstalling an app doesn't remove the user's license; use the \u003ccode\u003eEntitlements.delete\u003c/code\u003e API call to reclaim paid app licenses.\u003c/p\u003e\n"]]],[],null,["# Delete apps\n\nManually delete apps\n--------------------\n\nUsers can delete apps manually from their device unless the device's DPC\nrestricts them from doing so. If the app is still available in the managed\nGoogle Play store, the user can re-install the app.\n\n### Prevent users from deleting apps\n\nAt the DPC-level, you can prevent users from deleting specific apps using\n[`DevicePolicyManager.setUninstallBlocked`](https://developer.android.com/reference/android/app/admin/DevicePolicyManager.html#setUninstallBlocked).\n\nRemove apps from the managed Play Store\n---------------------------------------\n\nRemoving an app from the [`Device`](/android/work/play/emm-api/v1/devices)'s\n`policy` prevents new installs and updates of the app on that device. However\nthe app is not uninstalled automatically.\n\n### Delete apps\n\nTo delete an app from a user's device, call\n[`Installs.delete`](/android/work/play/emm-api/v1/installs/delete).\n\n### Reclaim paid app licenses\n\nUninstalling an app doesn't delete a user's entitlement to the app. Call\n[`Entitlements.delete`](/android/work/play/emm-api/v1/entitlements/delete) to\ndissociate an entitlement from a user and release the user's license for the\napp."]]