Hi everybody
i do a lot of running and use an app called endomondo which allows me to share my route after i have completed my run
does anyone know of an app that i can install and then if someone logs on to a website or the app they can see my run on a map in real time?
thanks for looking
Related
After having my application on the market for some time now, I was wondering if you can get the Stats of the total downloads. Android does provide a nice graph with the active installs but I'm interested in the delta (Downloads vs active installs).
Does someone knows if this is provided somewhere or how do you guys keep track of your downloads?
Thanks for your help!
An app on the market called analystics is the closest you'll probably get to this with out entering it manually into a spread sheet.
I added Flurry in my app. You have plenty of statistics, a great package. Check it. It's really simple to integrate in your app and you'll follow anything about it.
Thanks a lot this looks very promising and about what I was looking for!
Hello xda, as u can see i am new to this site.
I joined because I recently had an idea to make an app that would stream music to my phone. I want anyone to be able to use this app.
Here are my questions tho:
First of all i have no clue where to start. I have seen some ways on how to stream online radio stations, but thats not what i am looking for. I want this app to be like a radio station, but play only certain artist off of my computer. It does not have to be fancy. Im looking for a program to use to develop this app, or insight on how to do it. PLEASE help if anyone understands what i am asking for lol
derrickthaller said:
Hello xda, as u can see i am new to this site.
I joined because I recently had an idea to make an app that would stream music to my phone. I want anyone to be able to use this app.
Here are my questions tho:
First of all i have no clue where to start. I have seen some ways on how to stream online radio stations, but thats not what i am looking for. I want this app to be like a radio station, but play only certain artist off of my computer. It does not have to be fancy. Im looking for a program to use to develop this app, or insight on how to do it. PLEASE help if anyone understands what i am asking for lol
Click to expand...
Click to collapse
First things first I would start by learning Java and taking a look at the official Android developer documentation and training. For developing your app the Eclipse IDE and the ADT bundle (Android Development Bundle which includes the Eclipse IDE and Adroid SDK) will include all the tools you need to get started. Once you have worked through writing some basic apps,I would recommend checking out this tutorial on how to make a basic music streaming app. While the tutorial is outdated and uses an outdated version of Android the principles and concepts shown still very much apply today.
I have limited knowledge of Java already, just basics. In that TUT he is using http to stream his music. My question for this is there anyway to not do it via http but rather straight off my hdd or even cloud?? Also I do appreciate you replying so quickly, the TUT you sent is very helpful.
derrickthaller said:
I have limited knowledge of Java already, just basics. In that TUT he is using http to stream his music. My question for this is there anyway to not do it via http but rather straight off my hdd or even cloud?? Also I do appreciate you replying so quickly, the TUT you sent is very helpful.
Click to expand...
Click to collapse
What your looking for is something similar to this app here. One way would be to use cloud storage api's for Android such as Dropbox, Google Drive, etc. to stream the music. Directly off your hdd do you run Linux or Windows because you could look into integrating Samba share as a possibility. Also I would recommend then brushing up on your Java knowledge to make your Android programming experience more enjoyably and seamless (Not having to look up new Java things every minute).
App Making Program
derrickthaller said:
Hello xda, as u can see i am new to this site.
I joined because I recently had an idea to make an app that would stream music to my phone. I want anyone to be able to use this app.
Here are my questions tho:
First of all i have no clue where to start. I have seen some ways on how to stream online radio stations, but thats not what i am looking for. I want this app to be like a radio station, but play only certain artist off of my computer. It does not have to be fancy. Im looking for a program to use to develop this app, or insight on how to do it. PLEASE help if anyone understands what i am asking for lol
Click to expand...
Click to collapse
I love your idea, but really love your desire to make it yourself. A tutorial is the best way to learn app creation. When you "walk" thru the process, or learn as you go, you are learning a new skill that you can expand into other avenues.
I have taken app creation to making my website so others can take their great idea and make it into a reality....good luck and have fun!
DLL
website owner
http://easyappcreation.com
Amazfit Communication Library
The Amazfit Communication Library is a reverse engineered and modified version of the Huami "Transporter" class (and its subclass "TransporterClassic"), along with its dependencies. This allows both sending and receiving data on both the phone and the watch, using the same library.
Bascially, this allows apps on the watch to access data via a companion app on the phone. To make this easier, this library comes hand in hand with the "AmazfitInternetCommunication" app, which can be installed on the phone and allows apps on the watch to access the internet and perform simple requests, with data in response.
However, you can use this library with your own companion app on the phone to access any data the phone app has access to, for example a companion app on the phone with access to calendar appointments would allow a watch app to display events on a calendar, on the watch.
Usage
See the GitHub repo for the latest code and guide for addition of the library. You can also compile it if you wish.
Amazfit Internet Companion
Amazfit Internet Companion is a generic and open source internet companion app for the Amazfit Pace and Stratos. It allows apps developed with the Amazfit Communication library to access the internet over Bluetooth via a phone's internet connection. As a developer, rather than having to develop your own companion app, you can simply have your users install the companion app and it'll handle the rest, so long as you use the internet functions in the library (LocalURLRequest). Link them to the thread or use your own guide, linking to the latest APK from the repo to use this.
Alternatively, you can develop your own companion app. This could be used for loads of things, for example a companion app could provide a watch app with the calendar events on the phone, provided the phone app had the right permissions and formatted the data correctly. If you want to make your own companion app, feel free to use the Internet Companion app as a base
Hi Quinny, thanks for your great work. Did you make tests of how much this affects the battery life, egg with your train app?
Is it possible to run this in as a background service on watch?
Klaus3d said:
Hi Quinny, thanks for your great work. Did you make tests of how much this affects the battery life, egg with your train app?
Is it possible to run this in as a background service on watch?
Click to expand...
Click to collapse
I've not done proper tests but I've had it running for a few days with no noticeable effect on the life. Yes, you should be able to use a background service on the watch, if you need an app on the watch to always be available for receiving information from the phone - but bear in mind that the watch only has 512MB of RAM, so a running service is more taxing on the watch compared to a phone. You may be better off with a background service on the phone that stores the information you wish to send to the watch, which then responds to the watch app when it's run - an ondemand request if you will
Quinny899 said:
I've not done proper tests but I've had it running for a few days with no noticeable effect on the life. Yes, you should be able to use a background service on the watch, if you need an app on the watch to always be available for receiving information from the phone - but bear in mind that the watch only has 512MB of RAM, so a running service is more taxing on the watch compared to a phone. You may be better off with a background service on the phone that stores the information you wish to send to the watch, which then responds to the watch app when it's run - an ondemand request if you will
Click to expand...
Click to collapse
So if the watch can get any data from the phone, does that mean I can run Wear apps, like the Hangouts Wear app, on the watch and use it as it works on a regular Wear device? If so that would be incredible.
still work for watches in 2020?
hello, I know it's been a while since the last time this topic was discussed, does anyone know how to inform without this package still working today? I recently purchased an amazfit verge and since my house is completely automated, I want to develop an app for personal use ... thanks!
delphiover said:
hello, I know it's been a while since the last time this topic was discussed, does anyone know how to inform without this package still working today? I recently purchased an amazfit verge and since my house is completely automated, I want to develop an app for personal use ... thanks!
Click to expand...
Click to collapse
Still works, not tested it on the Verge though. Should work the same, they use the same framework I think.
Quinny899 said:
Still works, not tested it on the Verge though. Should work the same, they use the same framework I think.
Click to expand...
Click to collapse
cool, thanks for the reply!
Hello all,
I have the idea to give my running group a route and then list the km run by each person (anonymized) to see how far the group has run in total.
Do you have any app suggestions (Android) or approaches on how to implement this?
no ideas?
Hello,
I have a programming background but I'm new to android dev. so may I ask:
How difficult would be to implement an app that returns the GPS location of a specific phone and what tool would be the easiest way to make it? Will App Inventor do it? Another tool would be RFO-BASIC. Could someone be kind enough to describe the steps involved?
Reason for this kind of app is a friend of mine who has a 15yo child with health problem and needs to monitor it. I know there are apps in the market but: 1) Most are not free and 2) Does not want to (or can not) get his child's email details to use it for this purpose.... What he can do is take the phone for a while and install an app.
I suggest you check the official website of android development, where there are documents and tutorial for android app & GPS location development.