Questions tagged [code-signing-entitlements]

152 questions
4
votes
1 answer

What are the implications of codesigning an OS X application with a self-signed certificate?

Apple seems to restrict some OS X APIs (e.g. sandboxing) to applications that are codesigned by a trusted certificate, e.g. one issued to members of the paid Mac Developer program. How does OS X treat applications that are codesigned with a…
lxgr
  • 3,380
  • 4
  • 25
  • 44
4
votes
2 answers

Error when trying to Sandbox with codesign command

I am trying to Sandbox my OS X app using the codesign command (this is a common lisp app and does not use Xcode). I have created a very basic enitlements plist that looks like this:
Mike2012
  • 7,159
  • 13
  • 76
  • 131
3
votes
1 answer

Command /usr/bin/codesign failed with exit code 1: i386: No such file or directory

I have an error that just occurred. I think it was when I changed some of my build settings. I wanted my app to work with both armv6 and armv7. But now I get this error saying Command /usr/bin/codesign failed with exit code 1 and i386: No such file…
Jacob
  • 1,230
  • 1
  • 14
  • 29
3
votes
0 answers

Cannot connect to NSMachBootstrapServer from plugin

I'm fairly new to macOS development. I decided to create a CoreMedia DAL plugin to try to create a virtual camera and learn more about the Objective C ecosystem. There are two components to the application: The bundle plugin that gets installed…
3
votes
1 answer

Can an app in the Mac App Store ever get Accessibility permission?

I've got an app (made with ElectronJS) that relies on having Accessibility permission to listen for mouse/keyboard events (via the iohook package). I'd like to put it on the Mac App Store, but it appears that: Mac App Store requires Sandboxing…
3
votes
0 answers

How to access MacOS secure enclave from command line tool in Xcode

We need a cli interface to the secure enclave on the Macbook Pro platform to implement a custom extension to openvpn to id the machine from which the vpn client is connecting. We did not find a cli tool to access the secure enclave, like security…
rexford
  • 4,167
  • 5
  • 22
  • 36
3
votes
2 answers

Unable to build Ionic / Cordova iOS due to an issue with the entitlements file or provisioning profile

When trying to build the iOS version of my Ionic app, it keeps failing with the following message === BUILD TARGET tlpApp OF PROJECT tlpApp WITH CONFIGURATION Debug === Check dependencies Automatic signing is unable to resolve an issue with the…
3
votes
1 answer

Xcodebuild throws error in new Xcode-8 Beta version

I get this error Code signing is required for product type 'Application' in SDK 'iOS 10.0'", whenever i try building my app from command line using xcodebuild. The same command works fine with previous versions of Xcode. In general "xcodebuild…
3
votes
0 answers

keychain-access-group entitlement not updating

The provisioning profiles for my apps that come down from Apple have the keychain-access-groups entitlement turned on. My local Xcode does not have this entitlement (capability) turned on. This is resulting in local entitlements that don't match…
3
votes
0 answers

Adding Custom Entitlements To In-House App

I am attempting to add a CUSTOM entitlement (com.apple.private.bmk.allow) to an Enterprise App. I first built the app with XCode, then extracted the existing entitlement plist file, and added the custom entitlement entry. Next, I used codesign to…
3
votes
1 answer

Xcode 4.4.1 code signing issue

I have this code signing issue that came up only recently when I tried to submit my Mac application (not iOS) with Xcode 4.4.1 When I tried to validate my app's archive, validation fails with these two errors: Invalid Code Signing Entitlements. The…
adib
  • 7,718
  • 6
  • 46
  • 85
2
votes
0 answers

After including Contact Note Field Access entitlement

When we try to update on top of production build, we are getting the below error: "This application’s application-identifier entitlement does not match that of the installed application. These values must match for an upgrade to be…
2
votes
0 answers

When electron app is code signed, it won't open on older versions of mac osx

I'm building an electron app for distribution through the Mac App Store. I'm having trouble figuring out what code signing works on what version of Mac OSX because sometimes my builds crash on launch and sometimes they are fine. I got the app to…
Alexis Bell
  • 101
  • 7
2
votes
0 answers

Xcode: The executable was signed with invalid entitlements

When compiling an application in Xcode I run into this non-specific error: The executable was signed with invalid entitlements. The entitlements specified in your application's Code Signing Entitlements file are invalid, not permitted, or do not…
Peter G.
  • 6,748
  • 14
  • 67
  • 134
2
votes
1 answer

`electron-builder` failed with code signing error in mac

I have a simple build script to build/package theelectron application. The electron-builder fails with the stack trace given below. /Users/vkiranmaniya/Projects/Electron/GSTPro/node_modules/app-builder-lib/templates/entitlements.mac.plist…
1 2
3
10 11