QUOTE(kg patikang ulu @ Oct 3 2014, 10:40 AM)
Hello, anyone here face the problem computer didn't detect N4? How to solve it
Battery is charging but couldn't detect to open files
If the same phone and cable work in other computer, it's probably problem with driver in the affected PC.
If you using OSX like me, you will have problem and its not because of cable or anything. This is due to toopid LG that uses non-standard subclass for composite device.
EDIT: if you just want to transfer file, without using adb, just download this:
https://www.android.com/filetransfer/If you wanna use adb on OSX with your n4, continue...
*WARNING* root stuff, stop unless u know what u're doing...
Here is what you need to do:
1. Open terminal (Applications/Utilities/Terminal)
2. “cd /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBCompositeDriver.kext/Contents”
3. “sudo nano Info.plist” (or vi, or emacs, or whatever console editor you prefer)
4. Copy the IOUSBComposite section (from <key> to </dict>)
5. Paste the section in at line 66 (right after where it appears) so you have 2 copies in the file
6. Change the bDeviceSubClass value from 0 to 2
7. Change the key name from “IOUSBComposite” to “E960″
8. The end result should look something like this:
CODE
<key>E960</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleUSBComposite</string>
<key>IOClass</key>
<string>IOUSBCompositeDriver</string>
<key>IOProviderClass</key>
<string>IOUSBDevice</string>
<key>bDeviceClass</key>
<integer>0</integer>
<key>bDeviceSubClass</key>
<integer>2</integer>
</dict>
9. “sudo diskutil repairpermissions /” and let it finish
10. “sudo touch /System/Library/Extensions” and wait a few mins for the extension reindexing to finish
11. “adb devices” should now see your phone
source:
http://webcache.googleusercontent.com/sear...n&ct=clnk&gl=myThis post has been edited by cowithgun: Oct 3 2014, 10:53 AM