Questions tagged [codesign]

In iPhone development codesign deals with Provisioning Profiles, App Developer Certificate and device UDID.

In iPhone development codesign deals with Provisioning Profiles, App Developer Certificate and device UDID.

How to use code sign

enter image description here

574 questions
0
votes
2 answers

"The codesign tool could not be found" from Xamarin Studio

I'm trying to generate an IPA file for my App from Xamarin Studio, on Mac, and i'm getting this error: "The codesign tool could not be found" I checked the certificates, provisioning profiles, etc. I generated apps before in this machine, using the…
Marcelo Vitoria
  • 591
  • 1
  • 5
  • 15
0
votes
1 answer

Issue with building and signing an iOS app with a configurable bundle identifier to support multiple build configurations

I am trying to build multiple concurrent builds of my app (one for mocking environment, one for development environment, one for testing environment, one for production release). I have gotten very far in getting this working, but am having issues…
jreeve
  • 1
  • 3
0
votes
2 answers

How to sign every ocx, dll and exe file

I am using signtool to sign my files. How to recursively search all the ocx, dll and exes in a folder and subfolder then sign them all using Command Prompt ? I want to sign only the ones developed by me and not the third party ones.
0
votes
1 answer

How do you use Xcode 5 to create a key for use in signing Java application?

My Java application is signed as follows /usr/bin/codesign --force --sign XXXXXXXXXXXXXXXXXXXXXXXXX --requirements "=designated => anchor apple generic and identifier \"com.jthink.jaikoz\" and ((cert leaf[field.1.2.840.113635.100.6.1.9] exists) or…
Paul Taylor
  • 13,411
  • 42
  • 184
  • 351
0
votes
1 answer

Iphone development: codesign cannot access Keychain

I am stuck in the hell of keychain and iphone app certification process. I have the /usr/bin/codesign failed with exit code 1 error I have tried everything including doing the process X thousand times from the beginning, checking the build and…
user237821
  • 21
  • 1
0
votes
0 answers

Application failed to codesign using XCode 4.6.3 while XCode 5 is installed

A little background; I have a project that was created using XCode 4.6.3. After upgrading 4.6.3 to XCode 5, I was having issues working with the project (iOS7 interface etc) and therefore decided to download the stand alone XCode 4.6.3 from the…
Scratcha
  • 1,359
  • 1
  • 14
  • 22
0
votes
1 answer

Application failed codesign verification. (Flash developed Iphone App)

I've developed my first App with Flash CS6 and not with Xcode. the App was tested on actual Iphone 4, 4s and 5 devices. it's bug free and ready for distribution. I've created both distribution certificate and provisioning profile. Both are applied…
Mar Ben
  • 21
  • 5
0
votes
1 answer

iPhone codesign Missing Resources

I'm trying to get my ad hoc build distributed but have started experiencing problems. It used to work up until around a week ago, but now ITunes gives an 0x8008017 error when I try to Sync. I've narrowed it down by using the iPhone Configuration…
davbryn
  • 7,156
  • 2
  • 24
  • 47
0
votes
0 answers

How to sign jar on Mac OS X using installed .p12 certificate?

I am trying to sign myApp.jar on Mac OS X.I have installed p12 certificate on my Mac Os X machine. and to Sign app I use this following command - export…
Neelam Sharma
  • 2,745
  • 4
  • 32
  • 73
0
votes
1 answer

Is it possible to create user account for only can create IPA file but cannot delete or touch anything else?

I know it is awkward question but i cant find certain answer in internet yet. Is it possible to create users in Member Center for people create IPA files on my IOS developer account? But they have to not delete or manage anything else. We need to…
Yucel Bayram
  • 1,653
  • 2
  • 22
  • 41
0
votes
1 answer

xcrun doesn't embed provisioning profile into ipa

I am writing a build script for my phonegap-ios program. I am experiencing some problems during the code signing process. I use my script to build and code signing the project and generate ipa file. But the ipa failed to install to my iphone via…
Wei Zhang
  • 110
  • 1
  • 7
0
votes
1 answer

Upgrading a code signed Mono app causes KeyChain to stop access without reboot

We've a mono app that we sign and bundle into an app on OSX. Our app accesses the keychain for stored passwords, stored using the app name This works fine, until we perform an upgrade. On upgrade we replace the .app contents with the (also signed)…
penderi
  • 8,673
  • 5
  • 45
  • 62
0
votes
1 answer

Should I sign the Chrome Extension or NPAPI plugin?

I am packing a NPAPI plugin into a Chrome extension. My doubt here should I code-sign the NPAPI plugin or the Chrome extension?
0
votes
1 answer

Codesign (OSX): How to fix "unknown error -1009"?

My already working command line call of codesign: codesign -s /path/to/app has suddenly stopped working and outputs: : unknown error -1009=fffffffffffffc0f What might cause this and how can this be fixed?
mstrap
  • 16,808
  • 10
  • 56
  • 86
0
votes
1 answer

how to fix error given when using 'ldid' to sign cydia app

I have used the ldid utility to codesign my application so it can go on to cydia. And Yes I built my app with the armv7 set. Here is the code I used within the terminal: /// Before running the below code, I connected to my iDevice using SSH root#…