Linux Development/Deployment for Samsung Galaxy S3 - java

I'm using a Linux system (Xubuntu) to develop an Android app. I am using Eclipse to develop this app. I would like to be able to test on my Samsung Galaxy S3, but Eclipse cannot seem to find my device. There is nothing listed under the "Choose a running Android device" section.
I searched Samsung's website for USB drivers to the Galaxy S3, but I found none for Linux - only Windows and Mac. Where's the love for us Linux users? It seems absurd that there would be no USB driver for a Linux system to communicate with a Linux-based device. Is there a driver that I can use?

Did you try
adb kill-server
adb start-server
It is required to do the above in Linux. And also you should be logged in as root user,
https://stackoverflow.com/a/3129903/603744
Or if by any chance you haven't seen this question ,
Samsung Galaxy 7" (GT-P6210) not detecting for USB debugging?

You do not need usb driver for linux, Follow instruction from here. You need to add a file to rules.d

USB Drivers aren't required for Linux, which is why you can't find them.
To be able to deploy your application to your S3, you need to enable USB Debugging mode.
Home Screen -> Apps -> Settings -> Choose Developer options -> USB debugging
Home Screen -> Apps -> Settings -> Security -> Disable debug mode (turn this off)
Now connect your phone, and then run this command:
adb devices
It should list your device. Also, your Android notification area should show that debugging mode is enabled.
You'll now be able to deploy applications to it.

I also work on Ubuntu. You will have to set the USB Vendor IDs. Take a look on this link

Related

Android device disconnect from adb when launching app from eclipse

I have a OnePlus X device, which I use with Eclipse for debugging my apps. I had a Nexus 4 which worked perfectly.
I have a late-2012 macbook pro, and I tried to plug my device directly in the usb port of the computer, and with an external alimented hub.
When I plug my OnePlus and I use the command "adb devices" I can see my device. Troubles comes when I run the Android app from eclipse... At this point, my device is disconnected and the app is not launched. And I can't see my device anymore with adb device. All I can do is restarting the adb server, but it will still disconnect after I tried to run the app in Eclipse
I tried different cables, different usb in, but nothing change.
Anyone has a solution ?

HTC one V is Not Connecting Via Debugger mode

I am trying to connect "HTC one V" with my Eclipse for Android Application Testing.. I followed following steps to connect my phone.
Installed Google USB Driver Package..
From Phone Settings Debugger Mode is on in Developer Options..
But still when i try to run application in Eclipse it runs in Emulator Not in HTC device.
I deleted all Emulators but still my device is not present in connected Devices.
what should i have to do now?
Here are some tips:
Enable usb-debugging.
Instal HTC phone drivers from their website.
The next step is very important: Exit HTC sync on your pc.

Android Device not detecting in ecclips

I have installed all required drivers of mobile. My device is able to detect in' adb device'. but while running application, my mobile device is not coming..
In "device" it is able to locate.
I have gone through: "Run-> Run Configuration-> target" but there is no any active device.
yeah, I experienced that too. The reason can be anything... Try updating you adb / usb drivers. Maybe you gonna need a vendor-specific usb-driver.
Last time when I had problems with detecting my Sony Xperia S, I solved them by turning USB Modem in Preferences on.
this issue solved...
I changed SDK folder with another latest version of SDK externally.
Restarted Computer. Configured device.

blackberry device not detected when debugging on Mac

I have a problem when I want to debug my application from eclipse using device (I use 9700 for debugging). It's used to be like this: the device is connected to Mac using usb cable, and automatically desktop manager pops up, gives sign that my device is successfully connected, thus I can debug my project from eclipse.
Now I can't do it like that anymore. when I connect the device to Mac, desktop manager (or Mac) doesn't detect my device. I use:
Desktop Manager 2.3.1 build 5
BlackBerry Java Plug-in Version: 1.5.2.201204302029
Does anybody know how I can make my device be detected again by the system?
You might compare the results from either of these two USB utilities:
/Applications/Utilities/System Profiler.app
/Developer/Applications/Utilities/USB Prober.app

Install j2me application in samsung mobile

We developing j2me application for low end mobile devices (like Nokia s40 mobiles) which supports java. In our application we used JSR75 and JSR135 its working in nokia and sony ericsson but while trying to install the same application in Samsung devices(GT-S3310 ) we getting error like "File Format not supported". Please help how to install the jar file in samsung mobiles.
How are you installing the app? Side-loading the jar directly on to the device via USB or Bluetooth? Some handsets don't support that. Try installing it over the air instead, by pointing the web browser to the JAD which should be online somewhere.
I already checked on some samsung mobiles. They could not allow direct installation through with bluetooth or with USB cable. Because they following certain security norms of java apps installation. You need to install it from WAP sites.

Categories