What is Bluetooth file received location [closed] - android

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have two applications. One will transfer a set of files and another will receive via blue-tooth. This transfer is successful. I can see files via file explorer.
Now, I want to read them through my app.
I have seen received location changes according to your device. Its not always download\ blue-tooth.
So,
How do I know path of received file?
Can I change default path for a particular sender application or as a whole?

You will need to manage Bluetooth connections yourself. Follow the guidelines given in http://developer.android.com/guide/topics/connectivity/bluetooth.html
As far as changing the path of default Bluetooth applications is not easy. Some OEM's may expose this, others might not. So best way to make your application to work on all devices is get your own stream of bytes and write it to your location.

Related

How is it possible in Android to upload media from mobile to server whenever network is available? [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 6 years ago.
Improve this question
I am working on an Android application in which the mobile will capture images and videos and save to the phone memory. I need to upload these media to GCS when there is connectivity to internet. I think, using broadcast receiver is an option to check the connectivity and upload the media. But I am not sure about how to implement that. Could someone suggest me a better way to do the upload whenever the network is available?
The BroadcastReceiver is the best option to identify connectivity changes.
Check out the official android documentation about Determining and Monitoring the Connectivity Status.
Then it is suggested to identify when the user is connected to WiFi network and use some-kind of Service to upload your data.
At the official site there is a lot of resources about Building Apps with Connectivity & the Cloud.
Or you can simply search out better ways to upload data programmatically in Android.

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.

Live audio-video streaming to server, using network internet (not wi-fi) [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 create Android app, that will enable users to stream in real time audio and video from their phone to specified server. In addition, that server should save such recording to some file, to view it latter, but now it's not so important.
My question is: are there any simple or well documented ways of streaming video to remote server (not via wi-fi, I guess it can be important info)
I'm not sure how well Android handles WebRTC currently but I recommend you check it out! It uses Web-Protocols alongside Javascript/HTML5 components to stream-video/audio in real-time via the web-browser. I use it in 2 of my projects for similar applications. The only thing that differentiates is that you are wanting to store the video on your server.I'm guessing would also be possible but I haven't tried it! You can find all the documentation here.

Is there any way to fully control my android phone by PC using lan network? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm trying to control my android phone from a way out!I need to see my phone's screen.I want use my access point modem to perform this.
I have search the net but could not find a proper answer.
Is there any solution?
Thanks.
Sorry if the question tag may be wrong.
I don't know if you are seeking dev related instructions or just need an app which does what you want.
If the latter you should check this forum instead: https://android.stackexchange.com/
Some apps I know which does this:
https://play.google.com/store/apps/details?id=com.sand.airdroid
https://play.google.com/store/apps/details?id=com.unicorntoast.mrroboto.android
https://www.xda-developers.com/android/app-review-remotely-control-your-android-device-with-teamviewer-xda-developer-tv/
I doubt that android supports this out of the box, as that would be a security hole.
You might be able to get some rdp Service installed, as android is a linux distribution, but I it might drain your battery.
try this:
http://www.androidpit.de/de/android/market/apps/app/com.xtralogic.android.rdpclient/Remote-Desktop-Client

Android device to device comminication using wifi [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 7 years ago.
Improve this question
I have 2 android devices and I need to communicate between the two using wifi to send and receive data. What is a reliable method to send/receive data over a private wifi signal, preferably without rooting (I already know how to do it if rooted, but I really don't want to root my phone (I'm rooting my tablet)).
I don't mind writing a lot of code myself, just looking for a method or class to send data and receive it over wifi, with examples.
Try to refer to the official Android developer site to learn more about the WIFI Direct API. This is the official documentation and you can attempt the demo to get started.

Categories

Resources