Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access denied finding property "camera.hal1.packagelist"

While using camera in service mobile screen is getting un-touchable(locked by transparent window ) and only below error is occuring

Access denied finding property "camera.hal1.packagelist" 

what will be the reason and its solution? Please help..

like image 799
Amin Pinjari Avatar asked Jan 15 '18 10:01

Amin Pinjari


2 Answers

I was working with the OpenCV tutorial code for camera app on android. I encountered the same error, and after looking at the answers I indeed missed one permission.

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 

Although the app doesn't save any data externally, without this permission, the access denied error occurs. Hope it helps.

like image 79
Yipeng Zhang Avatar answered Oct 30 '22 12:10

Yipeng Zhang


I got the same error in my app, i was using surface view and had it weight set to zero. I changed it back to 1 and the error got resolved. Do check your xml code, it may help.

like image 31
Aqib Qureshi Avatar answered Oct 30 '22 12:10

Aqib Qureshi