Android - OnePlus does not work over ADB
I've been at this for a while. My issue is with using my OnePlus in order to run apps over ADB. As expected, when I connect my OnePlus without USB Debugging enabled, it is connected as a "Portable Device" in my Device Manager. However, when I turn on USB Debugging, the device "disconnects" from the computer altogether (I can't even access the files on it).
I've tried numerous tutorials and driver installers, all unsuccessful. I have the latest Android Studio along with the latest ADB drivers. If anyone could point me in the right direction, that would be much appreciated!
Update:
The (ancient) Samsung Galaxy SII works properly when connected to my computer. I can only assume this is an issue with my OnePlus.
add a comment |
I've been at this for a while. My issue is with using my OnePlus in order to run apps over ADB. As expected, when I connect my OnePlus without USB Debugging enabled, it is connected as a "Portable Device" in my Device Manager. However, when I turn on USB Debugging, the device "disconnects" from the computer altogether (I can't even access the files on it).
I've tried numerous tutorials and driver installers, all unsuccessful. I have the latest Android Studio along with the latest ADB drivers. If anyone could point me in the right direction, that would be much appreciated!
Update:
The (ancient) Samsung Galaxy SII works properly when connected to my computer. I can only assume this is an issue with my OnePlus.
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34
add a comment |
I've been at this for a while. My issue is with using my OnePlus in order to run apps over ADB. As expected, when I connect my OnePlus without USB Debugging enabled, it is connected as a "Portable Device" in my Device Manager. However, when I turn on USB Debugging, the device "disconnects" from the computer altogether (I can't even access the files on it).
I've tried numerous tutorials and driver installers, all unsuccessful. I have the latest Android Studio along with the latest ADB drivers. If anyone could point me in the right direction, that would be much appreciated!
Update:
The (ancient) Samsung Galaxy SII works properly when connected to my computer. I can only assume this is an issue with my OnePlus.
I've been at this for a while. My issue is with using my OnePlus in order to run apps over ADB. As expected, when I connect my OnePlus without USB Debugging enabled, it is connected as a "Portable Device" in my Device Manager. However, when I turn on USB Debugging, the device "disconnects" from the computer altogether (I can't even access the files on it).
I've tried numerous tutorials and driver installers, all unsuccessful. I have the latest Android Studio along with the latest ADB drivers. If anyone could point me in the right direction, that would be much appreciated!
Update:
The (ancient) Samsung Galaxy SII works properly when connected to my computer. I can only assume this is an issue with my OnePlus.
edited Dec 21 '15 at 9:08
mattrick
asked Dec 21 '15 at 6:26
mattrickmattrick
82511328
82511328
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34
add a comment |
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34
add a comment |
7 Answers
7
active
oldest
votes
I managed to resolve this problem, albeit after many hours, by following these really helpful instructions. I also had to put device into PTP mode, as mentioned by @mattrick in an earlier answer.
If you don't have Android SDK installed, please install it first.
- Open Start menu. Select Android SDK Tools -> SDK Manager.
- Right-click on it and select "Run as Administrator".
- Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!
- In the SDK Manager select "Extras->Google USB Driver". Enable the checkbox and click "Install 1 Package".
- When the Google USB driver is installed, plug in your device.
Warning: The driver won't install automatically. We will do it manually in the next steps. - Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties".
- Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".
- Select "Browse my computer for driver software".
- Select "Let me pick from a list of device drivers on my computer".
- Select "Show All Devices".
- Press the "Have Disk" button.
- Enter the path to the Google USB driver. Normally it is located in the following directory:
C:Program Files (x86)Androidandroid-sdkextrasgoogleusb_driver
- Select "Android ADB Interface" from the list of device types.
- Confirm the installation of the driver by pressing "Yes".
- Confirm the installation again by pressing "Install".
- When the installation is done, press "Close".
Hope this helps!
Here's my source: visualgdb.com
add a comment |
I think the problem is due to ADB driver.
I also faced the same problem with micromax tab.
Try universal ADB driver. Install it and check.
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
add a comment |
Go to your device manager, right click the phone and click update driver. There should be an option to select the driver from a list. Find Universal ADB Device on the list and select that.
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
add a comment |
Well in my case, I just followed this video:
https://www.youtube.com/watch?v=wXtbAMarHQw
And if in case, while selecting for the Device Drivers your Device Manufacturer Name doesn't show up.. Don't worry got to Google and select Google Composite ADB Driver Interface and select it.
This procedure worked for me!!
add a comment |
I got it to work:
It turns out when your device is connected through Media Device (MTP), ADB will not be able to communicate. In this case, you have to connect as a Camera (PTP) for it to work. Super annoying, but an easy fix if anyone happens to have this same issue.
add a comment |
use Automated installation http://adbdriver.com/downloads/
worked for me.
add a comment |
Make sure the cable is properly connected to your phone.
I know this sounds stupid, but this is what happened to me. I'm using a new phone case and when I connected the cable, phone was charging, but not visible for ADB. I found out that the cable is not fully plugged into the phone. When I took the phone out of the case, everything started to work as expected.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34390025%2fandroid-oneplus-does-not-work-over-adb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
I managed to resolve this problem, albeit after many hours, by following these really helpful instructions. I also had to put device into PTP mode, as mentioned by @mattrick in an earlier answer.
If you don't have Android SDK installed, please install it first.
- Open Start menu. Select Android SDK Tools -> SDK Manager.
- Right-click on it and select "Run as Administrator".
- Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!
- In the SDK Manager select "Extras->Google USB Driver". Enable the checkbox and click "Install 1 Package".
- When the Google USB driver is installed, plug in your device.
Warning: The driver won't install automatically. We will do it manually in the next steps. - Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties".
- Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".
- Select "Browse my computer for driver software".
- Select "Let me pick from a list of device drivers on my computer".
- Select "Show All Devices".
- Press the "Have Disk" button.
- Enter the path to the Google USB driver. Normally it is located in the following directory:
C:Program Files (x86)Androidandroid-sdkextrasgoogleusb_driver
- Select "Android ADB Interface" from the list of device types.
- Confirm the installation of the driver by pressing "Yes".
- Confirm the installation again by pressing "Install".
- When the installation is done, press "Close".
Hope this helps!
Here's my source: visualgdb.com
add a comment |
I managed to resolve this problem, albeit after many hours, by following these really helpful instructions. I also had to put device into PTP mode, as mentioned by @mattrick in an earlier answer.
If you don't have Android SDK installed, please install it first.
- Open Start menu. Select Android SDK Tools -> SDK Manager.
- Right-click on it and select "Run as Administrator".
- Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!
- In the SDK Manager select "Extras->Google USB Driver". Enable the checkbox and click "Install 1 Package".
- When the Google USB driver is installed, plug in your device.
Warning: The driver won't install automatically. We will do it manually in the next steps. - Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties".
- Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".
- Select "Browse my computer for driver software".
- Select "Let me pick from a list of device drivers on my computer".
- Select "Show All Devices".
- Press the "Have Disk" button.
- Enter the path to the Google USB driver. Normally it is located in the following directory:
C:Program Files (x86)Androidandroid-sdkextrasgoogleusb_driver
- Select "Android ADB Interface" from the list of device types.
- Confirm the installation of the driver by pressing "Yes".
- Confirm the installation again by pressing "Install".
- When the installation is done, press "Close".
Hope this helps!
Here's my source: visualgdb.com
add a comment |
I managed to resolve this problem, albeit after many hours, by following these really helpful instructions. I also had to put device into PTP mode, as mentioned by @mattrick in an earlier answer.
If you don't have Android SDK installed, please install it first.
- Open Start menu. Select Android SDK Tools -> SDK Manager.
- Right-click on it and select "Run as Administrator".
- Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!
- In the SDK Manager select "Extras->Google USB Driver". Enable the checkbox and click "Install 1 Package".
- When the Google USB driver is installed, plug in your device.
Warning: The driver won't install automatically. We will do it manually in the next steps. - Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties".
- Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".
- Select "Browse my computer for driver software".
- Select "Let me pick from a list of device drivers on my computer".
- Select "Show All Devices".
- Press the "Have Disk" button.
- Enter the path to the Google USB driver. Normally it is located in the following directory:
C:Program Files (x86)Androidandroid-sdkextrasgoogleusb_driver
- Select "Android ADB Interface" from the list of device types.
- Confirm the installation of the driver by pressing "Yes".
- Confirm the installation again by pressing "Install".
- When the installation is done, press "Close".
Hope this helps!
Here's my source: visualgdb.com
I managed to resolve this problem, albeit after many hours, by following these really helpful instructions. I also had to put device into PTP mode, as mentioned by @mattrick in an earlier answer.
If you don't have Android SDK installed, please install it first.
- Open Start menu. Select Android SDK Tools -> SDK Manager.
- Right-click on it and select "Run as Administrator".
- Running SDK Manager as Administrator is very important. If you just click on it, the SDK manager will start, but will encounter errors when you try to install new components!
- In the SDK Manager select "Extras->Google USB Driver". Enable the checkbox and click "Install 1 Package".
- When the Google USB driver is installed, plug in your device.
Warning: The driver won't install automatically. We will do it manually in the next steps. - Open the System Properties dialog (press Win+Break on the keyboard or locate "Computer" in Start Menu, right-click on it and select "Properties".
- Click on the "Device Manager" link. In the Device Manager locate your Android device. Then right-click on it and select "Update Driver Software".
- Select "Browse my computer for driver software".
- Select "Let me pick from a list of device drivers on my computer".
- Select "Show All Devices".
- Press the "Have Disk" button.
- Enter the path to the Google USB driver. Normally it is located in the following directory:
C:Program Files (x86)Androidandroid-sdkextrasgoogleusb_driver
- Select "Android ADB Interface" from the list of device types.
- Confirm the installation of the driver by pressing "Yes".
- Confirm the installation again by pressing "Install".
- When the installation is done, press "Close".
Hope this helps!
Here's my source: visualgdb.com
edited Dec 12 '16 at 23:51
answered Dec 12 '16 at 23:35
BexoloBexolo
12218
12218
add a comment |
add a comment |
I think the problem is due to ADB driver.
I also faced the same problem with micromax tab.
Try universal ADB driver. Install it and check.
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
add a comment |
I think the problem is due to ADB driver.
I also faced the same problem with micromax tab.
Try universal ADB driver. Install it and check.
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
add a comment |
I think the problem is due to ADB driver.
I also faced the same problem with micromax tab.
Try universal ADB driver. Install it and check.
I think the problem is due to ADB driver.
I also faced the same problem with micromax tab.
Try universal ADB driver. Install it and check.
answered Dec 21 '15 at 7:16
Bala PravinBala Pravin
744
744
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
add a comment |
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
Would you happen to have a link to one? I've tried multiple, including this one.
– mattrick
Dec 21 '15 at 8:12
add a comment |
Go to your device manager, right click the phone and click update driver. There should be an option to select the driver from a list. Find Universal ADB Device on the list and select that.
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
add a comment |
Go to your device manager, right click the phone and click update driver. There should be an option to select the driver from a list. Find Universal ADB Device on the list and select that.
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
add a comment |
Go to your device manager, right click the phone and click update driver. There should be an option to select the driver from a list. Find Universal ADB Device on the list and select that.
Go to your device manager, right click the phone and click update driver. There should be an option to select the driver from a list. Find Universal ADB Device on the list and select that.
answered Dec 21 '15 at 23:33
Sumit KukrejaSumit Kukreja
593
593
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
add a comment |
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
It actually didn't even appear in my device manager, until I changed it to PTP. At that point, it worked fine.
– mattrick
Dec 21 '15 at 23:57
add a comment |
Well in my case, I just followed this video:
https://www.youtube.com/watch?v=wXtbAMarHQw
And if in case, while selecting for the Device Drivers your Device Manufacturer Name doesn't show up.. Don't worry got to Google and select Google Composite ADB Driver Interface and select it.
This procedure worked for me!!
add a comment |
Well in my case, I just followed this video:
https://www.youtube.com/watch?v=wXtbAMarHQw
And if in case, while selecting for the Device Drivers your Device Manufacturer Name doesn't show up.. Don't worry got to Google and select Google Composite ADB Driver Interface and select it.
This procedure worked for me!!
add a comment |
Well in my case, I just followed this video:
https://www.youtube.com/watch?v=wXtbAMarHQw
And if in case, while selecting for the Device Drivers your Device Manufacturer Name doesn't show up.. Don't worry got to Google and select Google Composite ADB Driver Interface and select it.
This procedure worked for me!!
Well in my case, I just followed this video:
https://www.youtube.com/watch?v=wXtbAMarHQw
And if in case, while selecting for the Device Drivers your Device Manufacturer Name doesn't show up.. Don't worry got to Google and select Google Composite ADB Driver Interface and select it.
This procedure worked for me!!
answered Jun 8 '18 at 7:24
KNDheerajKNDheeraj
1058
1058
add a comment |
add a comment |
I got it to work:
It turns out when your device is connected through Media Device (MTP), ADB will not be able to communicate. In this case, you have to connect as a Camera (PTP) for it to work. Super annoying, but an easy fix if anyone happens to have this same issue.
add a comment |
I got it to work:
It turns out when your device is connected through Media Device (MTP), ADB will not be able to communicate. In this case, you have to connect as a Camera (PTP) for it to work. Super annoying, but an easy fix if anyone happens to have this same issue.
add a comment |
I got it to work:
It turns out when your device is connected through Media Device (MTP), ADB will not be able to communicate. In this case, you have to connect as a Camera (PTP) for it to work. Super annoying, but an easy fix if anyone happens to have this same issue.
I got it to work:
It turns out when your device is connected through Media Device (MTP), ADB will not be able to communicate. In this case, you have to connect as a Camera (PTP) for it to work. Super annoying, but an easy fix if anyone happens to have this same issue.
answered Dec 21 '15 at 22:56
mattrickmattrick
82511328
82511328
add a comment |
add a comment |
use Automated installation http://adbdriver.com/downloads/
worked for me.
add a comment |
use Automated installation http://adbdriver.com/downloads/
worked for me.
add a comment |
use Automated installation http://adbdriver.com/downloads/
worked for me.
use Automated installation http://adbdriver.com/downloads/
worked for me.
answered Jul 24 '18 at 5:34
AlokAlok
12114
12114
add a comment |
add a comment |
Make sure the cable is properly connected to your phone.
I know this sounds stupid, but this is what happened to me. I'm using a new phone case and when I connected the cable, phone was charging, but not visible for ADB. I found out that the cable is not fully plugged into the phone. When I took the phone out of the case, everything started to work as expected.
add a comment |
Make sure the cable is properly connected to your phone.
I know this sounds stupid, but this is what happened to me. I'm using a new phone case and when I connected the cable, phone was charging, but not visible for ADB. I found out that the cable is not fully plugged into the phone. When I took the phone out of the case, everything started to work as expected.
add a comment |
Make sure the cable is properly connected to your phone.
I know this sounds stupid, but this is what happened to me. I'm using a new phone case and when I connected the cable, phone was charging, but not visible for ADB. I found out that the cable is not fully plugged into the phone. When I took the phone out of the case, everything started to work as expected.
Make sure the cable is properly connected to your phone.
I know this sounds stupid, but this is what happened to me. I'm using a new phone case and when I connected the cable, phone was charging, but not visible for ADB. I found out that the cable is not fully plugged into the phone. When I took the phone out of the case, everything started to work as expected.
answered Nov 24 '18 at 14:00
MicerMicer
4,50424052
4,50424052
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34390025%2fandroid-oneplus-does-not-work-over-adb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It would help to know what OS/Machine model you are using (Win 7,Win 8, Win 10/Mac/Linux)?
– Morrison Chang
Dec 21 '15 at 6:33
@MorrisonChang I'm running Windows 10.
– mattrick
Dec 21 '15 at 6:34