I have never used this before, however...
The android developer site shows how to launch the android store with a link to your app, from within an app. Their code is below
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
Can anyone direct me to find out how this is done using B4A?
The android developer site shows how to launch the android store with a link to your app, from within an app. Their code is below
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.example.android"));
startActivity(intent);
Can anyone direct me to find out how this is done using B4A?