Ionic/native binding of all plugins and with different versions of angular

Hi, congratulations on your excellent work maintaining this Ionic community. It’s great!

I would like to be guided with a problem that I am facing installing @ionic-native/sign-in-with-apple.

What happens is that I have a project made with Ionic 4, Cordova 9, and angular 9.

"@angular/common": "^9.1.6",
    "@angular/core": "^9.1.6",
    "@angular/platform-browser": "^9.1.6",
    "@angular/platform-browser-dynamic": "^9.1.6",
    "@angular/router": "^9.1.6",
    "@ionic-native/core": "^5.23.0",
    "@ionic-native/facebook": "^5.23.0",
    "@ionic-native/fcm": "^5.26.0",
    "@ionic-native/firebase-analytics": "^5.28.0",
    "@ionic-native/firebase-authentication": "^5.25.0",
    "@ionic-native/google-plus": "^5.23.0",
    "@ionic-native/splash-screen": "^5.23.0",
    "@ionic-native/status-bar": "^5.23.0",

And now for IOS publishing, apple forcefully asks you to login with apple, so use the plugin:
Cordova-plugin-sign-in-with-apple

But after installing

@ionic-native/sign-in-with-apple
cordova-plugin-sign-in-with-apple

My application compiles fine, but never opens, never starts.

I did many tests to see the problem, and in a test, without @ionic-native/sign-in-with-apple I was able to compile and run the application without any problem using the code:
Cordova.plugins.SignInWithApple.signin(...)
as indicated in the documentation of
Cordova-plugin-sign-in-with-apple

For that reason, I realized that the problem was in
@ionic-native/sign-in-with-apple

because my @ ionic-native / core is version 5.23.0, I tried the same version of @ionic-native/sign-in-with-apple@5.23.0 and the same error happened …

I would like to know if you can tell me the compatible version of @ ionic-native / sign-in-with-apple for Ionic 4, Cordova 9, and angular 9 (before IVY)?

And request a table of supported versions for the different versions of angular Ionic, Cordova, and Angular.

I appreciate your attention and response.