So I wanted to start learning Android Programming, but I cannot find ADB driver for my phone for USB debugging. I tried looking at the http://developer.sonymobile.com/downloads/drivers/ but the Xperia Z2a D6563 does not exist there.
Use this exe.
Here's the installer file:
http://download.clockworkmod.com/test/UniversalAdbDriverSetup6.msi
Related
I am trying to install third party apk to Samsung android smart tv...
1) I've turn on Developer mode in Apps and put my computer ip address there.
2) I'm runing this commands in terminal (mac os, the latest version of sdk-tools)
adb kill-server && adb start-server && adb connect 192.168.1.237:26101 && adb devices
Getting this:
* daemon not running; starting now at tcp:5037
* daemon started successfully
connected to 192.168.1.237:26101
List of devices attached
192.168.1.237:26101 device
3) And run:
adb install ./my.apk**
And got this:
Performing Push Install
adb: error: connect failed: closed
- waiting for device -
p.s. almost every command failed with error: closed
(i've tried adb shell, adb logcat, and so on...)
What next step to try ? Is port 26101 correct? (I've also tried port 5555, but get Connection refused
Sorry but I haven't seen any Samsung Smart TV running Android. Samsung has their own operating system (Tizen) but, as far I know you can't install apk apps, also you cannot install apps using adb (in Tizen is named SDB), instead of SDB you need to use the Tizen SDK + Tizen Studio to pair your PC, sign your app (.wgt extension) and install it using the SDB
I have tried everything to install google camera on my mi a1 but due to problem of ADB drivers it does not show my device in attached devices list after running "adb devices" command.I have tried everything but it doesn't show my device in that list.plz help me
My solution in the end: install HiSuite !!!!
I have had problems installing the ADB driver for my XIAOMI Mi A1. At one point, the mobile device appeared in the PC device manager but did'nt have any driver.
I tried intalling the Mi PC suite but it coudn't access the device, asking to update the driver.
As suggested in the post mentionned below, I installed the HiSuite. Unexpectidly, it solved my problem. ADB is working now. Besides, HiSuite works as a PC suite for the Mi A1 and even allows now to sync with Outlook.
(see Google: techubber blogspot com 2017 02 mi-pc-suite-and-usb-connection-problems-device-not-connected )
As I was trying to install the app in my emulator through command prompt, it shows--
"error- more than one device and emulator."
I've 4 emulator but only 1 was online while I was installing the app.
I use this command (without quotes)
"adb install .apk"
Need help!!
close emulator, close adb. open and reconnect, you can use
adb devices
to see connected devices.
Android adb is not detecting my device
I installed the adb driver in windows and adb tool in tablet, then device is visible in Windows Device Manager as "Android Composite ADB Interface" but when i run command "adb devices" the list shows empty....
Im using 8inch android Tablet(Kogan) running OS is 4.1.1 and device is connected as "Media Device(MTP)". Usb Debugging Enabled.
Check your USB cable : could happen the one you use works only for charging and not for transferring data. Read following posts Can't find android device using "adb devices" command
I've been looking into Ubuntu Touch.
So I installed ubuntu on a Nexus 10 following the instructions here
I built the sample app following the instructions here
So now I have a device running ubuntu touch and an application, how do I put the application on the device?
You can use Qt Creator: Connect your Ubuntu Touch Device through usb open your project and simply press Ctrl+F12.
This works only if you have once installed ssh-server on the device.
Alternatively you can do it manually. Copy the necessary files (*.qml and *.desktop) to the device and start the application via ssh
qmlscene --desktop_file_hint=/usr/share/applications/qmlscene.desktop YourApp.qml
Source
Remember, this is all beta and if you are not a developer then you won't have much use for Ubuntu Touch at this stage. Eventually, Ubuntu Touch will have its own app store where it will be much easier to download apps and install them on your device.
If you are using the sdk provided by Ubuntu, then all you have to do is go:
Build -> Ubuntu Touch -> Install Application on Device
This will actually install the App instead of just running it. Now you can bring your prototypes with you =)