App rate does not redirect to google play

guys I’m having a problem here that’s complicated, I’m trying to use the APP Rate but when I click on “Rate Now” it doesn’t redirect me to google play, what’s wrong?

TS:

import { AppRate } from '@ionic-native/app-rate';

constructor(private appRate: AppRate) {

this.appRate.preferences = {
      ...this.appRate.preferences,
      storeAppURL: {
        ios: '1216856883',
        android: 'market://apps/details?id=com.devdactic.crossingnumbers'
      },
      simpleMode: true,
      useLanguage: "en",
      customLocale: {
        title: "rate my App",
        message: "Some message"
      },

    }

    this.appRate.promptForRating(true);
}

Tested with below code for android and its opening vivo app store in my case. No app present with this id

storeAppURL:{
          ios: '1216856883', //<my_app_id>',
          android:'market://details?id=com.devdactic.crossingnumbers', 
          blackberry:'appworld://content/[App Id]/',
          windows8:'ms-windows-store:Review?name=<the Package Family Name of the application>'
        },

Further if you are looking for demonstration visit
///Ionic 6 Angular App rate - YouTube