2015-06-07 122 views
0

1)我不知道我是否需要root設備才能在android中使用設備管理應用程序?設備管理需要root

2)在每個模擬器中解鎖BootLoader,那麼我可以鎖定模擬器的BootLoader嗎?

+1

爲什麼你不使用Genymotion?它是默認的根。 – Mohsen

回答

1

爲了讓您的應用程序使用設備管理API,您不需要對設備進行根目錄。

要使用設備管理API,應用程序的清單必須包括以下內容:

1. A subclass of DeviceAdminReceiver that includes the following: 
     - The BIND_DEVICE_ADMIN permission. 
     - The ability to respond to the ACTION_DEVICE_ADMIN_ENABLED intent, expressed in the manifest as an intent filter. 
2. A declaration of security policies used in metadata. 

More details