[android-developers] Phone does not update an app from google store

2013-05-16 Thread gt8887b
Hello, I am experiencing a strange issue with one of my customers. Their Android phone does not download updates from the google play store. They have PlayStore app configured to "Auto-update apps at any time." However, even though the new update is online it would not install it for some re

Re: [android-developers] Re: (Http)URLConnection.setUseCaches(false) isn't working

2012-11-15 Thread gt8887b
We are experiencing this problem occasionally on Verizon phones. We don't seem to have this issue on other networks, so it seems to be something on the carrier side. Our server does include "Cache-control: no-store, no-cache" in its reply header. On Friday, November 2, 2012 11:01:15 AM UTC-

[android-developers] Re: How do I keep corporate app (not in any store) updated?

2012-08-17 Thread gt8887b
The most straightforward way is to periodically poll the server to see if a new update is available. Then just point the browser to the location of your apk file Intent i = new Intent(Intent.ACTION_VIEW); > > i.setData(Uri.parse("http://your.site.com/yourAppFile.apk";));

[android-developers] Re: App Not Installed

2012-08-16 Thread gt8887b
Try installing over the USB using adb from a command line: > adb install yourapp.apk This will give you a more detailed error description. On Sunday, August 12, 2012 10:36:54 AM UTC-4, EeLeng Tee wrote: > > Hello.. > Im new to eclipse. > I've tried to play with android sample project from SDK.

[android-developers] Google Play Application Device Compatibility

2012-08-16 Thread gt8887b
Hello! I have developed an Android app that allows user to make phone calls (using Intent.ACTION_CALL) and receives commands via SMS (I have a broadcast receiver for android.provider.Telephony.SMS_RECEIVED action). Consequently I have android.permission.CALL_PHONE and android.permission.RECE