[android-developers] Anybody else getting document.body is null JS error when loading Market Dashboard?

2010-12-04 Thread Paul Tongyoo
When I hit the URL http://market.android.com/publish/Home;, I get an infinite Loading spinner as well as a document.body is null JS error within the following file: http://market.android.com/publish/gwt/com.google.wireless.android.vending.developer.HomeMod.nocache.js Anyone else having this

Re: [android-developers] Re: Debugging Droid X-specific issues

2010-09-19 Thread Paul Tongyoo
that could be causing this behavior? -PT On Tue, Sep 14, 2010 at 7:15 AM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Sep 14, 2010 at 10:09 AM, Paul Tongyoo paul.tong...@gmail.com wrote: Any ideas any one? Is there a way to emulate the Droid X's specific build locally? MOTODEV publishes

[android-developers] Re: Debugging Droid X-specific issues

2010-09-14 Thread Paul Tongyoo
Any ideas any one? Is there a way to emulate the Droid X's specific build locally? Maybe I'll share my specific issue: For some reason, when using the On Fri, Aug 27, 2010 at 1:30 PM, Paul Tongyoo paul.tong...@gmail.comwrote: Hi Developers-- So I've run into a Droid X-specific issue

[android-developers] Debugging Droid X-specific issues

2010-08-27 Thread Paul Tongyoo
Hi Developers-- So I've run into a Droid X-specific issue but am not able to reproduce with my emulator AVD's. Is there a Droid X-specific AVD that I should be using? Thanks in advance! PT -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Possible to play MediaRecorder-recorded Audio with Flash?

2010-08-01 Thread Paul Tongyoo
Hi all-- I've been trying to play the MP4/GPP files recorded via the MediaRecorder with the ActionScript 3.0 NetStream object with no luck. Even though MP4's are supposed to be supported by the NetStream class, I still receive NetStream.Play.NoSupportedTrackFound status events from the NS object

[android-developers] HTTP Bad Request when Posting File data to HTTPS from Phone But Not Emulator

2010-05-06 Thread Paul Tongyoo
Hi all-- I'm using HttpClient 3.x code to construct a MultipartEntity consisting of a few strings and binary data and posting this data to my webserver. What's odd is that when executing these posts from my local emulator, my webserver accepts the request fine and the data is posted. However,

Re: [android-developers] HTTP Bad Request when Posting File data to HTTPS from Phone But Not Emulator

2010-05-06 Thread Paul Tongyoo
? If the emulator is on a machine on the same network, that might be the cause Kevin A On May 6, 2010 12:23 PM, Paul Tongyoo paul.tong...@gmail.com wrote: Hi all-- I'm using HttpClient 3.x code to construct a MultipartEntity consisting of a few strings and binary data and posting this data to my

[android-developers] SocketTimeoutException: Read Timed Out Occurs Only via Mobile

2010-05-03 Thread Paul Tongyoo
Hi all-- I'm receiving SocketTimeoutException: Read Timed Out errors in my client app when attempting to post image data to a central server over HTTPS. What's odd is that I cannot reproduce the error when posting data from my local machine (via the emulator) to the same server. Increasing the

Re: [android-developers] Re: Is there any changes in crop image activity

2010-04-08 Thread Paul Tongyoo
I third that! :) :) So as an alternative, I tried putting a crop/true extra onto the intent that starts the MediaStore.ACTION_IMAGE_CAPTURE activity, and I get the following exception: 04-08 09:58:35.720: ERROR/AndroidRuntime(260): android.content.ActivityNotFoundException: No Activity found to

[android-developers] Can I use an AsyncTask instead of a Service for my Widget's background processing?

2010-03-31 Thread Paul Tongyoo
Just curious if there's any reason why I can't use an AsyncTask -- my current implementation uses AsyncTask and I'm experiencing inconsistent widget refreshing. TIA! PT -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Can I use an AsyncTask instead of a Service for my Widget's background processing?

2010-03-31 Thread Paul Tongyoo
You guessed right! Thanks for the tips, and I'll be clearer in the future. Best, Paul On Wed, Mar 31, 2010 at 8:49 AM, Mark Murphy mmur...@commonsware.comwrote: Paul Tongyoo wrote: Just curious if there's any reason why I can't use an AsyncTask -- my current implementation uses

Re: [android-developers] Re: Is there any changes in crop image activity

2010-03-26 Thread Paul Tongyoo
UPDATE: Romain Guy confirmed the CROP intent-filter still exists in Eclair, just moved to the Gallery.git manifest. HTH On Tue, Mar 23, 2010 at 2:13 PM, Streets Of Boston flyingdutc...@gmail.comwrote: This has been working for me, at least on a Droid, G1 and Nexus1: final Intent intent =

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-25 Thread Paul Tongyoo
, then they(google) at least should've made the cropping activity the same... it's not dependent on any hardware, me thinks. On Mar 24, 10:57 am, Paul Tongyoo paul.tong...@gmail.com wrote: Thanks Streets, I'll give it a shot. If the issue was due to missing hardware though, wouldn't I get a different

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Paul Tongyoo
three phones. What phone are you trying it on? On Mar 23, 6:46 pm, Paul Tongyoo paul.tong...@gmail.com wrote: I received this error: 03-23 15:40:13.871: ERROR/AndroidRuntime(308): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-24 Thread Paul Tongyoo
running on most actual devices. Test it on an actual device, a few of them if possible. On Mar 24, 2:35 am, Paul Tongyoo paul.tong...@gmail.com wrote: At the moment I'm just running the code against the 2.0 emulatorhm. On Tue, Mar 23, 2010 at 8:08 PM, Streets Of Boston flyingdutc

[android-developers] Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-23 Thread Paul Tongyoo
I'm no longer seeing an Intent Filter declared for the CropImage activity in the Eclair ... is there another way to re-use this activity? http://android.git.kernel.org/?p=platform/packages/apps/Camera.git;a=blob_plain;f=AndroidManifest.xml;hb=eclair-release TIA!! Paul -- You received this

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-23 Thread Paul Tongyoo
, R.id.view_image_menu_crop); On Mar 23, 5:12 pm, Paul Tongyoo paul.tong...@gmail.com wrote: I'm no longer seeing an Intent Filter declared for the CropImage activity in the Eclair ... is there another way to re-use this activity? http://android.git.kernel.org/?p=platform/packages/apps/Camera.git

Re: [android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-23 Thread Paul Tongyoo
): at android.app.Activity.startActivityForResult(Activity.java:2661) What do you think? On Tue, Mar 23, 2010 at 2:57 PM, Streets Of Boston flyingdutc...@gmail.comwrote: Did you try my example? It works fine on my Motorola Droid and many other droids i know of. On Mar 23, 5:29 pm, Paul Tongyoo