[android-developers] Crash when using Google Play Services due to wrong API level code

2014-01-10 Thread Nuno Silva
Hello, I had Google Play Services working on an app of mine and since the last update I've been working on a more native approach, by changing most of my code to native. However, for some reason, the Google Play code no longer works on Android 2.3.x, as it always crashes with this issue:

[android-developers] Google Play Services unable to login with error avk

2013-08-27 Thread Nuno Silva
I'm using Google Play Services for cloud sync in a game, and have already spent several hours trying to figure out this bug, but I have absolutely no luck figuring it out. I googled everywhere, but this specific error doesn't appear to anyone else, and I tried all the other solutions to

[android-developers] Question regarding SmsManager

2011-12-15 Thread Nuno
Hello, I am curious about why SmsManager is not accessible through Context.getSystemService as are TelephonyManager, LocationManager, ConnectivityManager, etc. Is there a specific reason behind this difference? Thanks for your help Best, Nuno -- You received this message because you

[android-developers] Re: ADC2 Results Post

2009-11-05 Thread nuno
I submitted 3 apps and only received emails about 2 of them. Does it mean that the other one passed? On Nov 5, 9:09 pm, newbyca newb...@gmail.com wrote: we submitted Wheel of Yum (under shopping I think?) ... from the email: Unfortunately, your application was not selected by Android users

[android-developers] Re: ADC2: Low volume of judges

2009-09-26 Thread nuno
Really no idea where you got that thought from maybe all the iPhone ads in almost all european country I travel to. On Sep 26, 6:00 pm, tauntz tau...@gmail.com wrote: Sorry about TV ads - don't know where I got the idea :) readingComprehension--; On Sat, Sep 26, 2009 at 7:55 PM,

[android-developers] Donut upgrade and ADC2

2009-09-16 Thread nuno
Hi all, Great that the SDK is released. My question is: - Will Donut be dumped on the phones before or after the user testing of the ADC apps finish? Because I can see that some apps may crash and be penalise without any of the developers fault. Cheers,

[android-developers] Re: ADC2 Submit vs Upload

2009-09-01 Thread nuno
There was always an upload button.That was the button you pressed before the submit. You could upload more than one app. On Sep 1, 6:43 am, Sri2 vat...@gmail.com wrote: We submitted the app. After submitting, I see a Upload button, what's that for? Is it to upload to Android market?

[android-developers] VideoView inside ScrollView

2009-07-23 Thread nuno
Hi all, I am using a VideoView inside a LinearLayout together with other views like TextView, and this LinearLayout is inside ScrollView, however when scrolling, the video it selfs scrolls but the view remains there blacked out. Is this a bug or is it something I am doing wrong? Cheers, Nuno

[android-developers] YouTube app Intent and Extras

2009-07-22 Thread nuno
Hi all, I am trying to find out the intents and extras used by the YouTube app? In it's most basic form the intent to view a video. Cheers, Nuno --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] stopService slow to act

2009-07-16 Thread nuno
Hi all, I am starting a service from a broadcast receiver, using android:process=:remote, which from what I understand means unbind. That BR dies. The service is runs some TTS (text2speach) in a cycle until a second broadcast receiver comes into action and executes stopService. I am using

[android-developers] Re: Start TTS from broadcast receiver

2009-07-10 Thread nuno
services and activities where you do the stuff you want to do - NOTHING ELSE :) Thanks again. Nuno (For other users: John's solution is:) quote: Hi again, sorted it! you need to create a new context object from the TTS package context, like so - Context myContext = ctx.createPackageContext

[android-developers] Start TTS from broadcast receiver

2009-07-09 Thread nuno
Hi all, I am trying to start TTS from a broadcast receiver and it as document an intent receiver can't bind the service. Is there a work around, I can't figure out how to start the service using startService(Intent, Bundle) any tips? Thanks, --~--~-~--~~~---~--~~

[android-developers] Delete assets at runtime

2009-06-25 Thread nuno
Hi all, I have a large (900kb) asset in the assets directory which is only used once by the app at initialization time. Is there way for me to delete this file at runtime? If not delete change it's contents to 0 and effectively reduce its size to almost nothing. There isn't really any point of

[android-developers] Re: Delete assets at runtime

2009-06-25 Thread nuno
Thanks Mark, I though that was the answer. I'll have to live with the file. Cheers, Nuno On Jun 25, 1:39 pm, Mark Murphy mmur...@commonsware.com wrote: nuno wrote: I have a large (900kb) asset in the assets directory which is only used once by the app at initialization time. Is there way

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-02-15 Thread nuno
I am also looking for a solution for this. Please help. On Feb 14, 7:17 pm, Guillaume Perrot guillaume.p...@gmail.com wrote: Sadly, the javadoc is not included in the new android.jar, so we can't have the doc in Eclipse anymore when auto-completing... Is there a way to restore that ? On

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-02-15 Thread nuno
Is anyone looking into the javadoc issue? On Feb 14, 7:17 pm, Guillaume Perrot guillaume.p...@gmail.com wrote: Sadly, the javadoc is not included in the new android.jar, so we can't have the doc in Eclipse anymore when auto-completing... Is there a way to restore that ? On Feb 14, 12:27 am,

[android-developers] Listview / Scrollview reach bottom event

2008-12-26 Thread nuno
Hi, Is there an event that is raised when the user reaches the bottom of the view when scrolling a listview or scrollview. I want this so that I can get more data from the remote server, like on the Market applications list. If it doesn't exist how do you think I can do it? Cheers, nuno