Notarization of MacOS applications using altool has been decommissioned
neerajtk13 opened this issue ยท 7 comments
my package.json
"afterSign": "build/notarize.js",
"appId": "1234A5CD.com.myorg",
"mac": {
"category": "public.app-category.utilities",
"target": [
"default"
],
"icon": "./app/assets/images/Logos/Logo512.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
my notarize.js
require('dotenv').config();
const { notarize } = require('electron-notarize');
exports.default = async function notarizing(context) {
const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== 'darwin') {
return;
}
const appName = context.packager.appInfo.productFilename;
return await notarize({
appBundleId: 'com.myorg',
teamId: '1234A5CD',
appPath: ${appOutDir}/${appName}.app
,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
});
};
im getting the following error
Failed to upload app to Apple's notarization servers
2024-04-04 08:28:06.730 *** Error: Unable to upload your app for notarization.
2024-04-04 08:28:06.731 *** Error: Notarization of MacOS applications using altool has been decommissioned. Please use notarytool. See: https://developer.apple.com/documentation/technotes/tn3147-migrating-to-the-latest-notarization-tool (-1031)
failedTask=build stackTrace=Error: Failed to upload app to Apple's notarization servers
2024-04-04 08:28:06.730 *** Error: Unable to upload your app for notarization.
2024-04-04 08:28:06.731 *** Error: Notarization of MacOS applications using altool has been decommissioned. Please use notarytool. See: https://developer.apple.com/documentation/technotes/tn3147-migrating-to-the-latest-notarization-tool (-1031)
i had to put tool: "notarytool" inside the notorize metod explicetely
return await notarize({
tool: "notarytool"
appBundleId: 'com.myorg',
teamId: '1234A5CD',
appPath: ${appOutDir}/${appName}.app,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
});
Lifesaver! ๐ Note 'notarytool' also requires 'teamId' which you can get from: https://developer.apple.com/account
@neerajtk13 Thank you for that , you help me a lot :)
Hi @neerajtk1, do i need to make any changes in package.json too ?
In the logs it is showing is showing notarization successful but when i checked artifact using this command "spctl -a -t open -vv "path/to/output-directory/YourAppName.dmg" it is showing rejected status. These are the versions i am using "electron": "^29.0.0",
"electron-builder": "^24.13.3", Can you please help on this.
i had to put tool: "notarytool" inside the notorize metod explicetely
return await notarize({
tool: "notarytool"
appBundleId: 'com.myorg', teamId: '1234A5CD', appPath: ${appOutDir}/${appName}.app, appleId: process.env.APPLEID, appleIdPassword: process.env.APPLEIDPASS, });
Where is this function?
EDIT: nevermind, I found it inside my notarize.js file, which is being called from package.json
I am trying to notarize on a Mac 10.15 (x64) machine and I tried adding teamID and tool but it is still showing: Failed to notarize via notarytool.
I took the executable notarytool from a new version of XCode and placed it into the proper location and nothing...any hints?
can you paste the complete error and your config