Call requires API level 14 (current min is 10):

后端 未结 6 1034
感动是毒
感动是毒 2021-01-06 08:53

How can I solve this error ? I do not understand the reason behind this error ?

code

devicePolicyManager.setCameraDisabled(demoDeviceAdmin, false);         


        
6条回答
  •  说谎
    说谎 (楼主)
    2021-01-06 09:51

    setCameraDisabled() method is introduced in API level 14. Have a look at official documentation for it here. You should change the API level of your application, if you want to use this method.

提交回复
热议问题