[Q] App For location history - Android Q&A, Help & Troubleshooting

hi there forgive me if i have posted this in wrong section,
i am looking for an app that will give me location history, i know there are plenty of apps out there like Google latitude, find my friend but what I was looking is, it will show me what locations they have been to because
i run a small leaflet business where i send people to distribute leaflets to doors but i think few of my employees are lying, as they take work phone with them i want to install such an app that will save their location and show me which area they have been to. i tried google latitude but it only shows where they are in real time. haven't found any app that will give me their location history which i can have look later in the day to check if they have done their job properly.
i hope someone understands me and advice me if there is any app that i can use.
thanks
Sent from my GT-I9505G using xda premium

Related

[Q] Never lose my stuff - backing up app data

Hello,
According to the Android Design Principles
Never lose my stuff
Save what people took time to create and let them access it from anywhere. Remember settings, personal touches, and creations across phones, tablets, and computers. It makes upgrading the easiest thing in the world.
Click to expand...
Click to collapse
which I think is great. The app I'm designing involves storing photos and data about them. Is there a good way to back this up? I could sync with a webservice I could write/host, but then I'm opening myself up to potentially large bandwidth/storage charges.
I considered using drop box or something, but that would require my non tech savvy users to sign up. Is there any easy way to integrate the google cloud service (as my users will of course have a google account)? What do people normally do when they want to meet this design principle?
Many thanks
Russ_T said:
Hello,
According to the Android Design Principles
which I think is great. The app I'm designing involves storing photos and data about them. Is there a good way to back this up? I could sync with a webservice I could write/host, but then I'm opening myself up to potentially large bandwidth/storage charges.
I considered using drop box or something, but that would require my non tech savvy users to sign up. Is there any easy way to integrate the google cloud service (as my users will of course have a google account)? What do people normally do when they want to meet this design principle?
Many thanks
Click to expand...
Click to collapse
I believe there is an api for backing up user data to Google drive and since users will have a Google account they automatically have Google drive (Your app will have to request permissions to access users Google account I believe). This would be the easiest way to implement things as the drive api is a native part of Android, and you don't have to worry about bandwidth and hosting storage. In the past people have hosted there own storage for users to used and then usually tie this to an account users have to create. Overall, like I said I'd look into using the Google drive api.
Sent from my SCH-I535 using xda premium
shimp208 said:
I believe there is an api for backing up user data to Google drive and since users will have a Google account they automatically have Google drive (Your app will have to request permissions to access users Google account I believe). This would be the easiest way to implement things as the drive api is a native part of Android, and you don't have to worry about bandwidth and hosting storage. In the past people have hosted there own storage for users to used and then usually tie this to an account users have to create. Overall, like I said I'd look into using the Google drive api.
Sent from my SCH-I535 using xda premium
Click to expand...
Click to collapse
Thanks very much. A bit of an oversight on my part so I'll have a look through the API and see what it offers.
I do intend to charge a subscription for my app/service ultimately, but I think I need to make storage space the users problem to save myself sleepless nights.
I'll investigate and post back here what I find. If anyone can give me a link to an article on this I'd appreciate it.
Thanks
Russ_T said:
Thanks very much. A bit of an oversight on my part so I'll have a look through the API and see what it offers.
I do intend to charge a subscription for my app/service ultimately, but I think I need to make storage space the users problem to save myself sleepless nights.
I'll investigate and post back here what I find. If anyone can give me a link to an article on this I'd appreciate it.
Thanks
Click to expand...
Click to collapse
Here is the official Google documentation on using the Google Drive Api:
https://developers.google.com/drive/
Check out this article on network storage and android:
http://developer.android.com/guide/topics/data/data-storage.html#netw
As well as this article on using the backup api and cloud sync:
http://developer.android.com/training/cloudsync/index.html
Also since you talked about eventually charging a subscription fee here is the official android developer documentation on that as well:
http://developer.android.com/guide/google/play/billing/billing_subscriptions.html
Wonderful, thank you very much indeed! I will give those a good read over when I get chance and let you know how I get on. It seems this could definitely be the answer, saving me money concerns and allowing my app to be multi user and backed up.
What I need to do is get my head around how I will use the cloud storage to allow my app to be multi user. Potentially I can make my database file based, and sync between two devices that way. My only trouble is when both devices are editing the same file / working on the same thing. I want the app to work offline, as I don't want connection issues to affect its usage.
Hmmm, I'll give it some thought.
Thanks again!

Do you use Licensing in your apps?

Was just wondering what peoples thoughts were on using the Android Licensing copy protection in their apps? Do you use it and do you spend a lot of time on it or have any creative ways to help enforce it?
As we all know any kind of drm will always be cracked but I just wanted to know if people found it worthwhile to have..
I'm using In-app-billing, because I found that even licensed apps can be copied.
And yes, all apps can be cracked eventually, but most of the publishers of cracked apps remove them if you ask to. So that's what I'm gonna do!
Sent from my Nexus 4 running Android 4.2 JB
I don't like license checks that force you to be online, but I do like to have 'something' in place...
Recently I started working with some OEMs in India who wanted to pre-load my apps on their devices. Very exciting obviously, but I didn't know if I could trust them as I'd never heard of them.
So what I did was get the app to load a web page on one of my servers off the screen (9000%x...) so that it couldn't be seen. The page it linked to was empty, but if I wanted to I could modify the code to include a redirect that would send it to another page. Then in my 'onPageOverride' event I just said if URL = 'stopapp.htm' then do whatever it was I wanted to do.
What I actually have it do in that event is to fill the entire screen with that web page. The user then can't interact with the app underneath, but they get a message that I can create at the time saying 'This app has been illegally distributed' or whatever else I want to say. I can even forward them on to the download page if I want this way.
This works well too because if the user isn't online, the page just doesn't load and nothing happens. But if I want to stop offline use as well I can save a file in File.DirInternal and have the app check for that. 'SwitchOff.txt'. They get caught once, then they can't use the app.
Obviously this doesn't work quite like a license check, but what you *could* do with it is to have the app pop up with a message to people using an old version that's not updated. That's probably downloaded off of some file sharing site, so you could then just keep pestering them to 'update' and send them to the Play Store to do so. You can also check how many of the users on that version of your app are legitimate by looking at your Play Developer Console.
One thing to note is that the redirect URLs you use will need to be different in every version of your app that you release.
Hope this helps someone! I wish I'd done it sooner, one of my apps is all over the web grrrr...
pretty much the same as what I'm doing atm except I just ping a server in the background and display a popup if the result meets certain conditions.. I don't disable the app either as I can't be 100% certain it's pirated, instead I display a "scary" popup saying if they're using a pirated copy this is illegal etc.. your average user won't know how the popup was generated so it should be enough to make them think "someone" is onto them and go the proper route.. With the added bonus a genuine user can just press ok and carry on using the app
Sent from my Nexus 4 using Tapatalk 4
Currently, none of my apps use licensing.
For one of my paid apps, about 5% of the downloads are from non-Google Play sources, meaning, I'm not seeing any revenue from those 5%.
There is an Android API, that allows developers to see which platform their app was downloaded from. So, I've been thinking about adding that hidden feature to my apps and maybe do something fun with it. But, haven't got around to it yet. My thinking has been that if somebody downloaded a pirated copy of my app, then they probably weren't going to pay for it in the first place. And, hopefully, they will tell their friends about it and maybe one of them will actually purchase it through Google Play.
I already have all my licensing code in place and commented out. Since my app is pretty new I want to see how it does before adding licensing. Since the app is free and income is from IAP its not too bad. I'd only turn on licensing in the next release if I see a pressing need for it.
Currently, none of my apps use licensing.

[Q] Feasibility of an App Idea

First of all, I dont know if this is the right forum to post the thread.. Honestly I could not find a better place..
So.. I have an app idea but am nowhere near to an developer.. Though I understand basic Java, app development is a distant dream for me :silly:
...Its basically an app with which a user can plan out their evening... the whole idea is in a very rudimentary stage...
Now to my question:
How difficult is it to code an application which looks at Google Maps and Other Google Databases to get details such as
1. Movies running in the city with their timings
2. Restaurants in a location along with their timings and ratings.
And also is there any permissions to be acquired for this data retrieval from Google

App that does this

I'm looking for an app that allows you to punch in all your membership IDs. For example, putting in your YMCA, Shoppers club, etc Id numbers into all one app so you don't need the physical cards.
Im sorry if Its hard to word this for your to understand. I just can't quite think or find an app for this. Who knows maybe someone on XDA even developed an app like this
CooLoserTech said:
I'm looking for an app that allows you to punch in all your membership IDs. For example, putting in your YMCA, Shoppers club, etc Id numbers into all one app so you don't need the physical cards.
Im sorry if Its hard to word this for your to understand. I just can't quite think or find an app for this. Who knows maybe someone on XDA even developed an app like this
Click to expand...
Click to collapse
I am not sure if there is an app to actually keep this in one place, but there are apps to create a barcode based on a number (I used one to replicate my school ID card so I could check out books using my phone). Maybe one could make an app that would do this, and allow you to name each barcode and store a list of them so you could easily pull it up... Sorta like a pseudo iOS Passbook for Android. Actually that would be really cool. I will consider making such an app if I find time. That's an amazing idea!
Barcode Generator - Google Play Store - I believe this is the app I used. It can also make QR codes. It supports many common formats, so it should work unless the store is using some stupid proprietary system. You can just make the barcodes and save them to your gallery so that you have access to them. I hope this helps.

[Privacy] Is there any Dialer and Contact App that request no permissions?

Hi,
I used to surf around xda-devs since its early beginnings, but This is my first interaction with this great community, and I am sorry 'cause it is a question.
So, I'm really wondering if there's any dialer or contact list App which don't steal users data .. I really hate it when I find a top rated Apps that requests almost every single permission available on the SDK, it's really disgusting. :banghead:
Even if there's such dialers that would ask for bunch of permissions, if you really know that it's from a clean company and it wont steal information from you, that would be helpful. :thumbup:
# Why I'm thinking of such a Dialer?
Because I was using android for years now, and I figured out that I don't really needs other apps to know my contacts and read my call history, I literally get no benefits from that, So I think if I used a 3rd party Contact list, apps like Facebook will be no longer able to fetch phone numbers out of my Android, by talking about Facebook it was very mean when I learned that they still going to copy your phone book to their cloud even if you consciously touched the 'Skip' button :banghead:
# Otherwise:
How can I prevent such apps from taking my contact list without rooting the device, (you know you try to control your privacy by rooting that device but what are you actually doing is giving access to many apps to many secret places).
Thanks in advance
Sent from my Nexus 5 using XDA Free mobile app

Categories

Resources