Android: Transfer files/apps from android device to pc [closed] - android

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am developing an android application that enables user to transfer files from an android device to PC.
How can i transfer selected files/apps to a connected PC?

You can just use a socket connection. your pc would be your server and the android app would be your client. This way you can send data from your mobile device to your pc.
for example you can refer below link
http://www.javaworld.com/article/2077322/core-java/sockets-programming-in-java-a-tutorial.html
this is basically written in java but similarly you can write it in android.

Related

Route Audio from Android Phone to PC via USB? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to route audio from an Android app I am developing to a PC via a standard USB cable. I have found some sources discussing native USB Audio support in Android Lollipop, but am unable to find any documentation or example code online.
Is this possible? Preferably, Windows should recognize the device as a standard microphone without the need for any extra drivers or software.
Thanks!

Using Android Device Camera through Python [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
How to take pictures through the camera of an android device that is connected to a PC via USB using PYTHON code running on PC ?
Android uses Java for applications, but I am unsure what the APIs are available for the OS.
Offhand I would give this a try: http://python-for-android.readthedocs.org/en/latest/android/

How to develop an android application using a Wifi connection [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to develop a mobile application (android OS), and I want to know how could I use a WIFI connection to connect 2 or more mobiles ..?, which protocols, which API's..?
Any help please..
In order to communicate, they first have to discover each other in the network. Link will help you do discover.
If you already know the IP addresses of each other, then the problem is much simpler. RPC call or HTTP call or use Sockets. There is this server which can take http calls on the android application. So, both the applications can have servers hosted.
I've just looked up this link.

Connection between a phone and another phone [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm working on a mobile application that takes a photo on a phone and sends it to another phone.
It should be able to work between an Android phone and an Iphone.
I'm working with phonegap.
First I was thinking of using the bluetooth technologies, but I read that it's impossible between android and Iphone.
So I was thinking of a UDP connection, but no matter what, I can't have a server and a client on my phone.
The only things that would work is to implement a server on my Computer.
Do you know another way of doing it ?
Nope. Thats the normal way of doing it - get a server on the internet and build a RESTFul api to listen for a device to send/receive to a phone. Android-to-Android, you could do NFC, but not with an iPHone

Writing App to access text file on PC remotely possible? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am hopefully going to be embarking on producing a ios or android app that shows the x read of a till from a remote location over an internet connection. My question is wether it is possible to access a text file or xcel file, take the contents of the file and pull it to the app using android and ios? I have a way to get the x read to either a xls or txt file but need to know if I will be able to access it using a ios or android app?
Apologies for the basic explanation but I am quite new to this.
Yes, it's possible.
You will have to write a server program that runs on the PC, and communicate via network sockets.

Categories

Resources