electron-clipboard-ex
electron-clipboard-ex copied to clipboard
Universal Apps
Hi, I tried to use electron-builder for the universal arch but could failed at compile in user app.
Tried to add x64+arm64 and perform npm run prebuildify but it did not work
const getSupportedArchs = () => {
if (platform === 'darwin') {
return ['x64', 'arm64', 'x64+arm64'];
}
if (platform === 'win32') {
return ['x64', 'ia32'];
}
return [];
};
Am I missing something?