Android USB without ROOT permission

1.3k Views Asked by At

I am working on an Android application which talks to webcam over USB.

I am using JNI to use the device libraries (*.so files). The application itself is in USB host mode and is working as expected on a custom image where I give read-write permissions to all the users for accessing USB device in /dev/bus/usb/

The app in not able to communicate with the device in a stock image where the device is not rooted.

is there a way a for the device to be able to communicate without root or custom image?

Thanks.

1

There are 1 best solutions below

1
On

yes there is a way, but it's a bit tricky.

you need to sign your application with the same key as the os is signed with. which allows you to get system permission without using rooted device.

you can try reading through this android permission.

and you can get more detailed description from this posted question and answers