Is it possible to deploy an app you built with electron to android?

Viewed 549

I know that you can use electron for cross platform applications (windows, macos, linux) but is there a way to get it to run on android?

1 Answers

I know it's a few months late but yes, you can. Apache Cordova uses Electron as one of its platforms and this seems to work like a charm.

Cordova normally creates apps for Android and iOS using JS but with the Electron platform, it can create all the Electron outputs as well like Windows/Mac/Linux by including node.js.

Related