I am trying to run an app from Android Studio on my Ubuntu laptop.
I have enabled USB debugging, but it is still not working.
When I press run in Android Studio, it does not detect my device (LG G3 Lollipop).
I could not find any help :(
If your device is not correctly detected in RAD Studio or in the system Device Manager, check the following: Ensure that your Android device is unlocked and not sleeping while connected via USB. Set the appropriate option in Settings or Developer Options. Make sure your Android device is enabled for USB debugging.
To do so, just click on “File transfer via USB touch for more options” in the notification area of the device. and then choose the PTP option. Then you will get a popup on your device regarding access. Just try restarting Android Studio to show up there as well though.
You can install Android Studio on Ubuntu 22.04 using either the android-studio repository or Snap. In both cases you need to install JDK first which can be done using the command $ sudo apt install openjdk-11-jdk.
First of all,
Open terminal and do following:
Do lsusb
command to check your device is indeed connected.
Do adb devices
to check if your device is connected then it is detected as in adb mode.
2.a. if the above command is not found, do sudo apt-get install android-tools-adb
and then check if it is listed.
Secondly, post results of step 1 and 2 with your question to help us in finding a correct solution.
Troubleshooting:
Allow
option when prompted for in your device upon connecting to your ubuntu system.follow the steps as mentioned upon page:
/etc/udev/rules.d/70-android.rules
.SUBSYSTEM=="usb", ATTR{idVendor}=="1004", MODE="0666"
to the file.sudo chmod a+rx /etc/udev/rules.d/70-android.rules
As a second step of troubleshooting (make sure you again repeated troubleshooting from step1 in case you failed at this step)
Again, the process:
/etc/udev/rules.d/51-android.rules
.SUBSYSTEM=="usb", ATTR{idProduct}=="1004", MODE="0666"
to the file.sudo chmod a+rx /etc/udev/rules.d/70-android.rules
Make sure you have adb installed in your ubuntu system. If not then type -
sudo apt-get install adb
Provide your system password and press 'Y' asked during installation process.
Then disconnect your device through USB and then reconnect it. You will have to grant permission for debugging which prompts on your device just after reconnecting.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With