electron-clipboard-ex icon indicating copy to clipboard operation
electron-clipboard-ex copied to clipboard

Universal Apps

Open codingedgar opened this issue 1 year ago • 0 comments

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?

codingedgar avatar Oct 01 '24 22:10 codingedgar