[android-developers] Re: unlocked phone - shipping fee

2008-12-17 Thread Dirk Jäckel
Hi! Over here in Germany its 174$. Most of it seems to be customs fee. The rest is hopefully for fast overses shipping. I will now how much what is when my phone gets here. Hopefully soon :-) The explanation is in the help http://android.brightstarcorp.com/help.php: For Orders shipping outside

[android-developers] Re: Has anybody received an android dev phone in the US yet?

2008-12-18 Thread Dirk Jäckel
Hi! I ordered at the 13. of December for delivery to Germany and I wonder how many times this has to be cleared: Package Progress LocationDateLocal Time Description KOELN (COLOGNE), DE 19/12/2008 7:55REGISTERED WITH CLEARING AGENCY / SHIPMENT SUBMITTED TO

[android-developers] Re: MockContext and any other Mock entities they are for what?

2009-03-18 Thread Dirk Jäckel
Please! Me too! Can I use them to run some of my unit-tests in the JVM instead of the emulator? That would be great. If not. Is there a way to run at least some tests in a JVM? Regards, Dirk On Mon, Jan 12, 2009 at 9:59 PM, hmmm akul...@mail.ru wrote: Hi, MockContext and any other Mock

[android-developers] Re: what is maximum size of application database allowable in Android?

2009-03-20 Thread Dirk Jäckel
Hi! How can I use the SDCARD for my sqlite3-database storage? Regards, Dirk On Fri, Mar 20, 2009 at 10:17 AM, Rajesh S rajeshs...@gmail.com wrote: Yes ~60MB on internal flash of htc-dream/g1/adp1. But about 300MB on htc-magic. If you manage to use external sdcard for this, then that is the

[android-developers] Re: Notification and PendingIntent

2009-02-05 Thread Dirk Jäckel
Hi! I had the same problem. It works if you set an Action. hilight.setAction(DUMMY); Then the extras are transmitted to the receiving Activity. HTH! Regards, Dirk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Official update for G1 Andriod developer phone (ADP) stock firmware

2009-02-20 Thread Dirk Jäckel
On Fri, Feb 20, 2009 at 7:30 AM, Jean-Baptiste Queru j...@android.com wrote: -the 1.0 images aren't currently available either. I expect that they'll be made available at the same time as the 1.1 images (which will allow to switch back and forth between the two). I don't know any specific

[android-developers] Re: ADP1 with 1.1 holiday firmware can see paid apps only if SIM card is plugged - BUG or not ?

2009-02-27 Thread Dirk Jäckel
On Fri, Feb 27, 2009 at 9:49 AM, Philipp Stecher p...@hexdust.net wrote: Hi I was shocked this morning when i read the following: http://www.google.com/support/forum/p/Android+Market/thread?tid=107185eea74e4005hl=en A google employee mentions there that the ADP1 will NOT be able to install

[android-developers] Re: Using custom jar files in Android app?

2009-03-06 Thread Dirk Jäckel
Hi! I use thrid-party jars with my application. All it takes is the dx-compiler transforming the classfiles to dex-files. It might also be neccessary to have a uses-library statement in your manifest. Like: uses-library android:name=android.awt/ Its explained for eclipse here:

Re: [android-developers] AsyncTask in Android 4.0

2012-05-16 Thread Dirk Jäckel
On Saturday, April 21, 2012 12:52:17 AM UTC+2, b0b wrote: Conclusion: there's probably man apps broken in subtle ways on ICS because of this change. Probably not, only because they have to explicitly set the targetSdkVersion to 13+, and I don't know how many people are setting it that

Re: [android-developers] AsyncTask in Android 4.0

2012-05-16 Thread Dirk Jäckel
On Friday, April 20, 2012 11:39:51 PM UTC+2, Dianne Hackborn wrote: Sorry yes it is API 13, I turned around the logic of the code when I glanced at it: // If the app is Honeycomb MR1 or earlier, switch its AsyncTask // implementation to use the pool executor. Normally, we

Re: [android-developers] How many TCP connection are alive in android device

2013-09-23 Thread Dirk Jäckel
Hi! Do you have enough power for the device so it can run 24/7 without sleeping? i.e. an external battery or power source? If not, have a look at this example using MQTT. It worked for me but I am not sure about the licensing of the wmqtt.jar. http://dalelane.co.uk/blog/?p=1599cpage=1 It