Android App Locking Camera
Is it possible to get the android app (process ID or package name or whatever) of the app/process that is currently locking the camera on an Android device? It's easy enough to se
Solution 1:
The CameraService is responsible for locking the camera device. This isn't a part of the NDK and hence not accessible through your app. See this related discussion.
You may have to use some non-standard way, like gaining root privileges, and then interacting with the underlying Android system directly.
Post a Comment for "Android App Locking Camera"