I have created an app using Haxe, CreateJS, Electron. It all works very nicely prior to electron packaging. i.e. npm start = application works fine.
Once I package the application, the app crashes when it is playing video… i.e. run the exe, navigate to a section that plays video, application crashes. (window goes blank white, and is unresponsive. Devtools disconnects)
Any ideas on what could be the issue?
package.json
{
"name": "hvdc2",
"version": "1.0.0",
"main": "index.js",
"scripts":
{
"start": "electron ./bin",
"package-win": "electron-packager ./bin --platform=win32 --arch=ia32 --out=./dist --overwrite=true",
"package-osx": "electron-packager ./bin --platform=darwin --arch=x64 --out=./dist --overwrite=true"
},
"author": "Me",
"license": "ISC",
"dependencies":
{
"electron-packager": "^7.0.4",
"electron-prebuilt": "^1.3.8"
},
"bin":
{
},
"description": ""
}