'How to make electron application run on MacOS versior lower than minimun supported version?

For electron application minimum MacOS version supported is macOS 10.11 (El Capitan) according to offical Electron Support page.

enter image description here

My MacOS version is 10.10.5 so I am not able to run my electron application. But other electron based applications like Slack and Canva are running fine.

How come slack and canva are running on MacOS 10.10.5? What should I do to run my electron application on this old version like slack and canca are running?



Solution 1:[1]

You're likely running an older version of Slack. In the Info.plist for Slack I see:

<key>LSMinimumSystemVersion</key>
<string>10.11</string>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Joshua Kaplan