How to debug Android apps on BlackBerry Priv?

I tried the regular tap-seven-times-on-the-build-number process to get the BlackBerry Priv recognized by my Ubuntu machine for debugging. While I could go into the developer options and enable debugging, I did not get the MAC address authorization dialog, and adb devices showed no permissions .

How do you do this?

+6
source share
1 answer

Add to any rules file that you use in /etc/udev/rules.d/ for your Android devices, or create something like 51-android.rules :

 # BlackBerry Priv SUBSYSTEM=="usb", ATTR{idVendor}=="0fca", ATTR{idProduct}=="8032", MODE="0666" 

Then disconnect from Priv, run sudo service udev restart on the command line and enable Priv again. You should get a MAC address authentication dialog and continue as usual.

+7
source

All Articles