Hello everyone,
I’m currently migrating an app from Ionic 4 (Cordova) to Ionic 7 (Capacitor). In order to retain all the original features, I still need to use some Cordova plugins via the @awesome-cordova-plugins
package.
In the Cordova version, I was distributing the app on Android, iOS, and Windows. Now, I would like to migrate it to these three platforms using Capacitor as well.
I tried using @capacitor-community/electron
for the Windows version, but it crashes whenever a Cordova plugin function is called.
Is there any recommended way to successfully support Windows (desktop) in a Capacitor-based app that still relies on Cordova plugins?
Thank you in advance!