[android-developers] Android Device Seeding Program - Differences in phone for developers?

2010-03-09 Thread nickthecook
Does anyone know if the Nexus One that Google is sending developers as part of the Device Seeding Program is different from the ones people get when they order them from Google's website? Different packaging? Different firmware? Different pattern on the case? Thanks! -- You received this

[android-developers] Re: Android Device Seeding Program - Differences in phone for developers?

2010-03-09 Thread nickthecook
, and sell the one from Google when I get it. Waiting is not easy. :) On Mar 9, 8:52 am, Kaj Bjurman kaj.bjur...@gmail.com wrote: Is there a reason to why you expect it to be different from the one that you can order? On 9 mar, 13:19, nickthecook nickthec...@gmail.com wrote: Does anyone know

[android-developers] Re: Android Device Seeding Program - Differences in phone for developers?

2010-03-09 Thread nickthecook
e.g., this one: http://www.redmondpie.com/wp-content/uploads/2010/01/NexusOne.jpg On Mar 9, 7:08 pm, nickthecook nickthec...@gmail.com wrote: Google has special developer versions of some phones. I have the ADP1, and it's got a cool print on the back of the case. Granted, that was advertised

[android-developers] Re: Error after installing 1.6 on DEV PHONE

2009-10-07 Thread nickthecook
I have the same issue. I had not wiped userdata the first time I tried the upgrade, and ran into this problem. I tried the upgrade again, performing a factory reset from recovery mode first this time. I did not see the partner setup crash error immediately. I successfully loaded both Gmail and

[android-developers] Re: Error after installing 1.6 on DEV PHONE

2009-10-07 Thread nickthecook
Here is the logcat for the Google Partner Setup crash: D/Sync( 74): Received boot completed action I/ActivityManager( 74): Stopping service: com.android.providers.subscribedfeeds/.SubscribedFeedsIntentService I/ActivityManager( 74): Stopping service:

[android-developers] Re: Error after installing 1.6 on DEV PHONE

2009-10-07 Thread nickthecook
/vending ( 308): com.android.vending.BaseActivity.onAuthTokenComplete (): null auth token. On Oct 7, 9:43 pm, nickthecook nickthec...@gmail.com wrote: Here is the logcat for the Google Partner Setup crash: D/Sync    (   74): Received boot completed action I/ActivityManager(   74): Stopping

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-13 Thread nickthecook
like to know what I'm doing wrong, or if anyone is looking at the native code involved for problems. Thanks! On Jan 11, 10:29 am, nickthecook nickthec...@gmail.com wrote: I'm still seeing this problem as well. I can boot my phone, start my app, load a single image (~300k) and have this error

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-13 Thread nickthecook
at the standard G1 resolution of 2048 * 1536. At 2 bytes per pixel (using RGB_565 or ARGB_ format) this will in your phone expand into 2048 * 1536 * 2 = 6291456 bytes uncompressed. That's a sizable chunk of memory. Regards On Jan 11, 4:29 pm, nickthecook nickthec...@gmail.com wrote: I'm

[android-developers] Re: OutOfMemoryError BitmapFactory.nativeDecodeByteArray inside Threads

2009-01-11 Thread nickthecook
I'm still seeing this problem as well. I can boot my phone, start my app, load a single image (~300k) and have this error. I'm loading images with the BitmapFactory.decodeByteArray() method, which calls BitmapFactory.nativeDecodeByteArray(). What is interesting is that after I added a background

[android-developers] Re: connecting g1 to ubuntu 8.04 for beginners?

2009-01-07 Thread nickthecook
Hello Mitchell, I don't have a solution for you, but I can say that after connecting my phone to my Ubuntu 8.10 x86_64 box and clicking the mount button in the alert on the phone, it gets mounted properly for me. I did not have to do anything special to get it to work. I would look at the

[android-developers] Working with JPEG images

2009-01-05 Thread nickthecook
Hello all, I'm looking for a way to work with JPEG images read from a file in Android. Specifically, I would like to scale them, and be able to get their height and width. I can get an InputStream to a JPEG file on the SD card, and I can work with the raw bytes, but I'd like something a little

[android-developers] Error in native method Picture.nativeCreateFromStream()

2009-01-05 Thread nickthecook
Hello all, I'm having some trouble creating a Picture from an InputStream. I am trying to do this: ByteArrayInputStream bis = new ByteArrayInputStream(bytes); Picture pic = Picture.createFromStream(bis); The problem also occurs when I try to use an InputStream returned by

[android-developers] Re: Error in native method Picture.nativeCreateFromStream()

2009-01-05 Thread nickthecook
that was previously written to a stream. It does not know how to decode or interpreted images or other data formats. Use BitmapFactory for that. On Sun, Jan 4, 2009 at 11:29 AM, nickthecook nickthec...@gmail.com wrote: Hello all, I'm having some trouble creating a Picture from an InputStream. I am