[android-developers] Re: Stumped on launching Market app

2009-01-03 Thread John Spurlock
Try this: startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse (market://search?q=pname: + packageName))); See http://code.google.com/android/devel/sign-publish.html#marketintent On Jan 3, 9:18 pm, Keith Wiley kbwi...@gmail.com wrote: I just can't find a simple bit of sample code online that

[android-developers] Re: Stumped on launching Market app

2009-01-03 Thread John Spurlock
Doh - sorry it's late. Re-reading your question it seems you've done the same things. Fwiw, that's what I use in apps and it works just fine. Perhaps you need uses-permission android:name=android.permission.INTERNET / in the manifest? On Jan 3, 11:12 pm, John Spurlock john.spurl...@gmail.com

[android-developers] Re: Stumped on launching Market app

2009-01-03 Thread John Spurlock
3rd time's the charm. It's probably your action. Replace ACTION_VIEW with Intent.ACTION_VIEW (which is actually android.intent.action.VIEW) On Jan 3, 11:21 pm, John Spurlock john.spurl...@gmail.com wrote: Doh - sorry it's late.  Re-reading your question it seems you've done the same things.

[android-developers] Re: Stumped on launching Market app

2009-01-03 Thread Keith Wiley
Hmmm, the suggested quoted below worked. I wonder why. BTW, on your other two posts, I had tried those, no luck. Doing the whole thing in one statement seems to work. I'll have to look into it. Thanks. On Jan 3, 8:12 pm, John Spurlock john.spurl...@gmail.com wrote: Try this: