Hi
I m developing android apps.
I have to connect android market in my application.
So ,kindly suggest me how to connect android market.
Thanks in adv.
Hi
I m developing android apps.
I have to connect android market in my application.
So ,kindly suggest me how to connect android market.
Thanks in adv.
I'm guessing you want to launch the android market app and point to a certain application on the market.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.test.TestApp"));
startActivity(intent);
Replace the "com.test.TestApp" with the package name of the application you want to point to.