[android-developers] Re: Google subscriptions validation returns error code 400 Invalid

2016-05-24 Thread Yossi Shemesh
format > > понедельник, 23 мая 2016 г., 23:54:34 UTC+3 пользователь Yossi Shemesh > написал: >> >> Our app have a subscription option with various tiers. >> >> We are validating the subscription tokens via the Google >> Purchases.subscriptions.get meth

[android-developers] Google subscriptions validation returns error code 400 Invalid

2016-05-23 Thread Yossi Shemesh
Our app have a subscription option with various tiers. We are validating the subscription tokens via the Google Purchases.subscriptions.get method : GET https://www.googleapis.com/androidpublisher/v2/applications/packageName/purchases/subscriptions/subscriptionId/tokens/token When

[android-developers] Re: How to keep service alive?

2009-07-20 Thread Yossi
My code snippet was not full. I use ServiceConnection and do save the state of the service (binded/unbinded) to avoid unnecessary binding. Anyhow, thanks for the details. I believe I know now how to rewrite me code. Yossi On Jul 19, 11:49 pm, Dianne Hackborn hack...@android.com wrote

[android-developers] How to keep service alive?

2009-07-19 Thread Yossi
is that if the user opens other apps, my foreground app is being killed by the system (makes sense) but then also the service is being killed by the system (does not make sense). Can I change that? Is it related to the way I start/bind/unbind to the service? Thanks, Yossi

[android-developers] Re: How to keep service alive?

2009-07-19 Thread Yossi
recording. How come the system does not close the music service? Is there a priority? Thanks, Yossi On Jul 19, 1:35 pm, Mark Murphy mmur...@commonsware.com wrote: Yossi wrote: Is it possible to keep service alive even if the foreground app does not run anymore? Yes, for a while anyway

[android-developers] Re: Lost focus on soft keyboard

2009-05-06 Thread Yossi
Anyone has this issue or am I doing something wrong? On May 2, 11:51 am, Yossi yossi@gmail.com wrote: Hi, I implemented a custom preference screen on which I have an EditText control. The problem I have is when the user clicks on the EditText control to enter data, thesoftkeyboardpops

[android-developers] Re: Lost focus on soft keyboard

2009-05-06 Thread Yossi
6, 10:11 am, Dianne Hackborn hack...@android.com wrote: IMEs do not take input focus, so I don't really understand what you are describing.  What behavior are you seeing that is different than how the IME behaves in other parts of the UI? On Tue, May 5, 2009 at 11:47 PM, Yossi yossi

[android-developers] Re: Lost focus on soft keyboard

2009-05-06 Thread Yossi
is nothing like the standard behavior of EditText anywhere else in the system, here must be something in your code instigating it. On Wed, May 6, 2009 at 12:24 AM, Yossi yossi@gmail.com wrote: 1. User clicks on the EditText 2. Soft keyboard pops-up and EditText loses the focus. Any typing

[android-developers] Re: Ho to deteck key press on soft keyboard

2009-05-02 Thread Yossi
It seems this API is available only for 1.5 and I need the same code to run also for 1.1 So I assume there is no backwards compatible API. correct? Thanks, Yossi On May 2, 12:44 am, Dianne Hackborn hack...@android.com wrote: The InputConnection interface is the API the IME has to your text

[android-developers] Lost focus on soft keyboard

2009-05-02 Thread Yossi
, Yossi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers

[android-developers] Ho to deteck key press on soft keyboard

2009-05-01 Thread Yossi
Hi, I have an EditText control on a preference screen and I run some logic when the user enters a character. I've been using View.OnKeyListener but it does not work with the soft (virtual) keyboard (V1.5). What should I use instead? Thanks, Yossi

[android-developers] Re: App localization

2009-03-26 Thread Yossi
) and the german version in a seperate folder (values-de/ strings.xml) and it works well that way. general strings that are the same for both languages can be kept in the values/strings.xml and don't need to be copied over to each and every translation (like version, app name, etc.) Yossi

[android-developers] App localization

2009-03-23 Thread Yossi
Hi, I'm planning to localize my app (e.g. translate to different languages). Assuming it will support English and German, does it mean that users in Germany will get only the German text or would they be able to choose having it in English? Thanks, Yossi

[android-developers] Re: Location.getTime() does not return milliseconds

2009-03-18 Thread Yossi
certainly wouldn't expect (nor probably want) fixes more than every second. :} On Tue, Mar 17, 2009 at 2:54 PM, Yossi yossi@gmail.com wrote: Hi, According to the decumentation, android.location.Location.getTime() returns the fix time in milliseconds. however I keep getting the time

[android-developers] Re: Location.getTime() does not return milliseconds

2009-03-18 Thread Yossi
I'm calculating the average speed of several points so I need to have the accurate total distance and time. On Mar 18, 2:32 pm, Neil neilb...@gmail.com wrote: If you want the speed call getSpeed(). On Mar 18, 12:21 pm, Yossi yossi@gmail.com wrote: thanks, I also don't want fixes more

[android-developers] Location.getTime() does not return milliseconds

2009-03-17 Thread Yossi
Hi, According to the decumentation, android.location.Location.getTime() returns the fix time in milliseconds. however I keep getting the time rounded to seconds (e.g. no milliseconds accuracy). Is this the 'normal' behavior or do I do something wrong? Thanks, Yossi

[android-developers] Re: Pls help: how to reinstall dev phone?

2009-03-01 Thread Yossi
Hi Faber, Travis, I managed to fix it. it was the DroidSans.ttf that was corrupted (tried to replace it before). After copying it again, the phone is alive! Thanks for your support. Yossi On Mar 1, 5:25 am, Travis Cross t...@travislists.com wrote: Yossi wrote: this is what it shows

[android-developers] Re: Pls help: how to reinstall dev phone?

2009-02-28 Thread Yossi
this is what it shows DREA100 PVT 32B HBOOT-0.95.3000 CPLD-4 RADIO-1.22.12.29 Oct 20 2008 it also has a yellow line in the middle of the screen which says Serial0 in the middle. what does it mean? Thanks, Yossi On Feb 27, 3:12 pm, Travis Cross t...@travislists.com wrote: Yossi wrote

[android-developers] Share database between applications

2009-02-09 Thread Yossi
use case: - have one running application using its database for storing its data - when starting the second application it should connect to the first application's database and get its whole data (e.g. copy the whole database) both applications are mine so I can control both of them. it is

[android-developers] Re: fitness or workout program

2009-01-20 Thread Yossi
Buddy Runner was released. Check on the market www.buddyrunner.com On Dec 20 2008, 12:21 pm, Yossi yossi@gmail.com wrote: I'm working on an app that will allow to track and monitor your workout progress both on the device and on a web site. First app will be for runners and planned

[android-developers] Re: fitness or workout program

2008-12-21 Thread Yossi
I'm working on an app that will allow to track and monitor your workout progress both on the device and on a web site. First app will be for runners and planned to be shipped in a few weeks. In case you have any feature requests I would be happy to know about them. Yossi On Dec 19, 11:10 pm