"npm install --save @ionic-native/android-permissions@4" not able to install it

When I am running this “npm install --save @ionic-native/android-permissions@4” I am getting the following error.

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: AashaPlus@0.0.1
npm ERR! Found: rxjs@7.5.7
npm ERR! node_modules/rxjs
npm ERR! rxjs@“~7.5.0” from the root project
npm ERR! peer rxjs@“^6.5.3 || ^7.4.0” from @angular/core@15.2.2
npm ERR! node_modules/@angular/core
npm ERR! @angular/core@“^15.0.0” from the root project
npm ERR! peer @angular/core@“*” from @ionic-native/android-permissions@4.20.0
npm ERR! node_modules/@ionic-native/android-permissions
npm ERR! @ionic-native/android-permissions@“4” from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer rxjs@“^5.5.11” from @ionic-native/core@4.20.0
npm ERR! node_modules/@ionic-native/core
npm ERR! peer @ionic-native/core@“^4.11.0” from @ionic-native/android-permissions@4.20.0
npm ERR! node_modules/@ionic-native/android-permissions
npm ERR! @ionic-native/android-permissions@“4” from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.

Hi, you could try to install @awesome-cordova-plugins/android-permissions@latest instead of @ionic-native/android-permissions@4.

Because plugins under the @ionic-native namespace are no longer receive updates.

You can find more information in the official blog post here:

Also, you might consider replacing all @ionic-native packages with the @awesome-cordova-plugins packages.

  • Remove all @ionic-native packages:
npm rm @ionic-native/core
npm rm @ionic-native/android-permissions
npm rm ...
  • Install the corresponding @awesome-cordova-plugins packages:
npm install --save @awesome-cordova-plugins/core
npm install --save @awesome-cordova-plugins/android-permissions
npm install --save ...

Thank you @jonz94,
I tried your ways still I am getting same error. This error is raising after this "ionic cordova plugin add cordova-plugin-bluetoothle " not with this “npm install @awesome-cordova-plugins/bluetooth-le”.
Today I checked.