[android-developers] Web services for mobile apps

2009-02-04 Thread dbradby
Hi Everyone, We're been releasing quite a few iPhone and Android apps over the past few months that have required various pieces of server side support. Mostly we wanted to be able to control welcome messages, upgrade notifications, collect errors and analytics. Having built all this ourselves

[android-developers] AdMob for Android

2009-01-28 Thread dbradby
If anyone is interesting in putting some ads in their apps, AdMob released an SDK today. Seems to work ok and I put a quick start guide together on http://jtribe.blogspot.com/2009/01/admob-for-android.html Hope it helps ... Daniel -- iPhone, Android and Geolocation ramblings -

[android-developers] Android Market place stats

2009-01-11 Thread dbradby
Hi Everyone, For anyone interested in how apps in the Android market are ranking over time, I've put together a website at http://androidstats.com. Check it out and let me know what you think. Regards, Daniel -- iPhone, Android and Geolocation ramblings - http://jtribe.blogspot.com/

[android-developers] Download counts frozen

2008-11-07 Thread dbradby
Hi, Is anyone else seeing their download counts frozen for their apps in the Market place? I am 100% certain I have downloads occurring due to updated behaviour on our servers. But our downloads counts have been stuck for the past 4 days now. Regards, Daniel

[android-developers] Re: Sending email

2008-10-31 Thread dbradby
John - I'm assuming this only works on the real device and not the emulator? I'm trying Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, email text);

[android-developers] Intent for sending email

2008-10-22 Thread dbradby
Hi, I want to be able to send an email in my application, however I'm not interested in the user entering their mail details/SMTP server. I would like to forward the user off to another application that handles email/contact selection. It seems I should be able to use the Intent.ACTION_SEND.