Questions tagged [code-signing-entitlements]

152 questions
2
votes
0 answers

Changing bundle identifier of signed IPA and resigning with my own cert/provisioning profile

A third-party company has delivered a signed IPA using their certificates and provisioning profiles. In order for me to resign the IPA, I need to change the bundle identifier to match my provisioning profile. I have tried this using Fastlane Sigh…
spectre10
  • 294
  • 4
  • 11
2
votes
2 answers

Profile doesn't match the entitlements file's values for the application-identifier and keychain-access-groups entitlements

I have tried every solution from every similar question. Whenever I try to Validate an archive in Xcode 9.3 Organizer I get this error with all types of profile types. I tried exporting my project with Xcode 8 and I think it did something different…
Marvin
  • 31
  • 1
  • 4
2
votes
1 answer

In-house provisioning not working

iOS App Provisioning is, as most will probably agree, among the most confusing and complicated subjects an iOS developer has to deal with and I'm one of them. :-) One of our teams needs to start beta testing their app. It's a corporate app that will…
2
votes
1 answer

IOS - How to resign an ipa file?

I try to resign an .ipa file but I have some problems. I archived the project and exported it for Ad Hoc Deployment then I followed this tutorial: https://sholtz9421.wordpress.com/2012/06/08/digitally-resigning-ipa/ . During installation I had this…
mary
  • 185
  • 1
  • 2
  • 10
2
votes
4 answers

xcode 8 entitlements mismatch error

So I'm getting the famous entitlements mismatch error. It would seem that "The entitlements specified in my application's Code Signing Entitlements file are invalid, not permitted, or do not match those specified in your provisioning profile." What…
Joseph Fakelastname
  • 754
  • 1
  • 4
  • 17
2
votes
1 answer

What kind of dynamic code modification does dynamic code validity check protects against?

SecCodeCheckValidity: Performs dynamic validation of signed code. SecStaticCodeCheckValidity Validates a static code object. This function obtains and verifies the signature on the code specified by the code object. It checks the validity of all…
PnotNP
  • 2,891
  • 2
  • 20
  • 45
2
votes
0 answers

How do I enable the In-App Purchases capability only for specific build configurations?

We are building an app for a client, whose app id has the In-App Purchase entitlement. When we send builds to them, we use their provisioning profiles/signing certs and all is well. However, for our internal testing, we'd like to use our team's…
ray
  • 1,748
  • 2
  • 20
  • 36
2
votes
0 answers

iCloud KVStore - Code Signing Entitlements Error

I'm configuring a iCloud KVStore scenery with multiple apps. In this scenery you have a primary app that writes to its kvstore container, and secondary apps that read from the primary app's kvstore. The primary apps has a kvstore identifier that by…
loretoparisi
  • 12,864
  • 9
  • 78
  • 108
2
votes
2 answers

xcodebuild archive fails ITMS validation

Our app has a watchkit app + extension. Archives from XCode IDE always pass iTunes store validation. However archives generated via xcodebuild command tools (Xcode 6.4; Build version 6E35b) fail this validation with the following errors: ERROR…
Sandeep Chayapathi
  • 1,360
  • 2
  • 11
  • 31
2
votes
3 answers

Apple Pre-Release app submission "Missing beta entitlement"

I was trying a long to give pre-release thru itunes connect, I have created the new Certificate for production / App Id / Adhoc provisional profile against newly created certificate. I was always met with missing beta entitlement during export build…
Sathish
  • 388
  • 1
  • 5
  • 19
2
votes
2 answers

Xcode 6 cannot build iCloud project

I can't even build my project at the moment because the entitlements are wrong apparently "None of the valid provisioning profiles allowed the specified capabilities: Features: iCloud. iCloud containers:" I have changed the App ID iCloud capability…
2
votes
0 answers

containerURLForSecurityApplicationGroupIdentifier for iPhone/iPad

As suggested in link : How containerURLForSecurityApplicationGroupIdentifier in NSFileManager works on iOS 7 I was able to get two application access common location /Library/Application%20Support/iPhone%20Simulator/7.0.3/Containers/somegroupIDhere/…
Sagrian
  • 1,048
  • 2
  • 9
  • 28
2
votes
1 answer

cocoa sandbox embedded command line not work

I have a third-party command line tool that launches from a main cocoa app which will be distributed in Mac App Store. I need to sandbox the third-party command line tool, but when I run it (with NSTask), it crashes with error “Application…
2
votes
2 answers

How to use Entitlements keys to access private iOS features

From what I know from documentation about Entitlements plist - These files define properties that provide your application access to iPhone OS features (such as push notifications) and secure data (such as the user’s keychain). Publicly, the only…
Abhinav
  • 36,284
  • 39
  • 178
  • 301
2
votes
1 answer

Mac OS app entitlements block internet connection

I have a Mac OS app that needs outgoing connections. I've followed Apple Code Signing Guide (Xcode 4.6.2) to enable entitlements and my target summary looks like this: I have a MYAPP.entitlements file in my project that looks like: Everything…