Git Product home page Git Product logo

codesigndoc's Introduction

codesigndoc

Your friendly iOS Code Signing Doctor.

Using this tool is as easy as running codesigndoc scan and following the guide it prints. At the end of the process you'll have all the code signing files (.p12 Identity file including the Certificate and Private Key, and the required Provisioning Profiles) required to do a successful Xcode Archive of your Xcode project.

What this tool does:

  1. Gathers all information required to do a clean Xcode / Xamarin Studio Archive of your project.
  2. Runs a clean Xcode / Xamarin Studio Archive on your project.
  3. From the generated xcarchive file it collects the Code Signing settings Xcode / Xamarin Studio used during the Archive.
  4. Prints the list of required code signing files.
  5. Optionally it can also search for, and export these files.

Install / Run

One-liner

Just open up your Terminal.app on OS X, copy-paste this into it and hit Enter to run:

Xcode

For Archiving & Exporting IPA for Xcode project (project or workspace):

Exporting the code signing files of the App target and it's dependent targets for the Archive and IPA generation (e.g: Xcode Archive & Export for iOS step will need them):

bash -l -c "$(curl -sfL https://raw.githubusercontent.com/bitrise-io/codesigndoc/master/_scripts/install_wrap-xcode.sh)"

For UI testing on real device for Xcode project (project or workspace) e.g: Xcode Build for testing for iOS & iOS Device Testing:


Note: For UI testing you will need the code signing files for the App target and it's dependent targets and for the UI test targets too. So you will need to run the install_wrap-xcode.sh and the install_wrap-xcode-uitests.sh as well.


First you need to export the code signing files of the App target and it's dependent targets:

bash -l -c "$(curl -sfL https://raw.githubusercontent.com/bitrise-io/codesigndoc/master/_scripts/install_wrap-xcode.sh)"

Secondly you need to export the code signing files of the UI test targets:

bash -l -c "$(curl -sfL https://raw.githubusercontent.com/bitrise-io/codesigndoc/master/_scripts/install_wrap-xcode-uitests.sh)"

If the UITest scanner cannot find the desired scheme, follow these steps:

  1. Make sure your scheme is valid for running a UITest.

    • It has to contain a UITest target that is enabled to run.
  2. Refresh your project settings:

    • Select the Generic iOS Device target for your scheme in Xcode.
    • Clean your project: ⌘ Cmd + ↑ Shift + K.
    • Run a build for testing: ⌘ Cmd + ↑ Shift + U.
    • Run codesigndoc again.

Xamarin

For Archiving & Exporting IPA for Xamarin project (solution):

bash -l -c "$(curl -sfL https://raw.githubusercontent.com/bitrise-io/codesigndoc/master/_scripts/install_wrap-xamarin.sh)"


Manual install & run

  1. download the current release - it's a single, stand-alone binary
    • example (don't forget to replace the VERSIONNUMBER in the URL!): curl -sfL https://github.com/bitrise-io/codesigndoc/releases/download/VERSIONNUMBER/codesigndoc-Darwin-x86_64 > ./codesigndoc
  2. chmod +x it, so you can run it
    • if you followed the previous example: chmod +x ./codesigndoc
  3. run the scan command of the tool
    • if you followed the previous examples:
      • Xcode project scanner: ./codesigndoc scan xcode
      • Xcode project scanner for UI test targets: ./codesigndoc scan xcodeuitests
      • Xamarin project scanner: ./codesigndoc scan xamarin

Manually finding the required base code signing files for an Xcode project or workspace

If you'd want to manually check which files are required for archiving your project (regardless of the distribution type!), you have to do a clean archive on your Mac, using Xcode's command line tool (xcodebuild) and check the logs. The easiest way is open the Terminal app, cd into the directory where your Xcode project/workspace file is located, and do a clean archive from Terminal.

Performing a clean archive from Terminal is as easy as running this command (on your Mac) if you use an Xcode Workspace: xcodebuild -workspace "YOUR.xcworkspace" -scheme "a Shared scheme" clean archive or this one if you use an Xcode Project: xcodebuild -project "YOUR.xcodeproj" -scheme "a Shared scheme" clean archive

In the output you'll see code signing infos, namely you should search for the text Signing Identity which is followed by a Provisioning Profile line. There might be more than one configuration in the log - these are the configurations used by Xcode on your Mac when you do an Archive.

To make an Xcode Archive work on any Mac, you need the same Code Signing Identity (certificate) and Provisioning Profile(s). The signing Identities (certificates) and Provisioning Profiles present in the log are required, regardless of the final distribution type you use.

To run the xcodebuild command and only show these lines you can add the postfix: | grep -i -e 'Signing Identity' -e 'Provisioning Profile' -e ' to your call, for example: xcodebuild -workspace "YOUR.xcworkspace" -scheme "a Shared scheme" clean archive | grep -i -e 'Signing Identity' -e 'Provisioning Profile' -e '. This will run the exact same command, but will filter out every other text in the output except these lines you're searching for.

By running this command you'll see an output similar to:

Signing Identity:     "iPhone Developer: Viktor Benei (F...7)"
Provisioning Profile: "BuildAnything"
                      (9.......-....-....-....-...........0)

If you see more than one Signing Identity or Provisioning Profile line that means that Xcode had to switch between code signing configurations to be able to create your archive. All of the listed certificates & provisioning profiles have to be available to create an archive of your project with your current code signing settings.

Troubleshooting the UITest scanner

If the UITest scanner cannot find the desired scheme, follow these steps:

  1. Make sure your scheme is valid for running a UITest.

    • It has to contain a UITest target that is enabled to run.
  2. Refresh your project settings:

    • Select the Generic iOS Device target for your scheme in Xcode.
    • Clean your project: ⌘ Cmd + ↑ Shift + K.
    • Run a build for testing: ⌘ Cmd + ↑ Shift + U.
    • Run codesigndoc again.

Development

Create a new release

You must do the release in two steps. You cannot merge version/version.go changes and bitrise run update-wrapper-versions changes in one step, because the install scripts have to refer to valid, existing releases.

  1. Merge all changes to master.
  2. Increase the version in version/version.go.
  3. Merge the version change to master.
  4. Push version tag to master. This will trigger an automated release process.
  5. Download from GitHub and test the new release.
  6. Run bitrise run update-wrapper-versions. This will update the version numbers in the install scripts.
  7. Merge the updated wrapper versions.

codesigndoc's People

Contributors

4chanmoot avatar arclite avatar birmacherakos avatar daangeurts avatar godrei avatar jlampa avatar kaosf avatar lpusok avatar lszucs avatar lyricsboy avatar rozd avatar viktorbenei avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.