I'm trying to link a click with the app store related to sunmi POS machines. The code below works for Play Store only and crashes on the terminals.
private fun openStore() {
val intent =
Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=APP_ID))
startActivity(intent)
}
Any special keywords I should add to open the app screen in the store correctly?