diff --git a/README.md b/README.md index 62c290283..cc22b59bf 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,9 @@ DEVELOPER_ENTITLEMENTS = -dev PROVISIONING_PROFILE_SPECIFIER = ``` +You can use Keychain Acceass to [find your development team ID](/Technotes/FindingYourDevelopmentTeamID.md). +Note that `PROVISIONING_PROFILE_SPECIFIER` should not have a value associated with it. + Now you should be able to build without code signing errors and without modifying the NetNewsWire Xcode project. diff --git a/Technotes/FindingYourDevelopmentTeamID.md b/Technotes/FindingYourDevelopmentTeamID.md new file mode 100644 index 000000000..10237b9d9 --- /dev/null +++ b/Technotes/FindingYourDevelopmentTeamID.md @@ -0,0 +1,15 @@ +# Finding Your Development Team ID + +* Open Keychain Access on your development machine. +* On the left hand side, make sure "My Certificates" is selected. +* Find the certificate that reads `Apple Development: ` + +![DevelopmentTeamID](Images/DevelopmentTeamID.png) + +* Right click on the certificate and select "Get Info". + +![DevelopmentTeamIDInfo](Images/DevelopmentTeamIDInfo.png) + +Your **Development Team ID** is the value next to **Organizational Unit**. + +/Users/pietrorea/Developer/github/Ranchero-Software/NetNewsWire/Technotes/FindingYourDevelopmentTeamID.md diff --git a/Technotes/Images/DevelopmentTeamID.png b/Technotes/Images/DevelopmentTeamID.png new file mode 100644 index 000000000..0aff9f377 Binary files /dev/null and b/Technotes/Images/DevelopmentTeamID.png differ diff --git a/Technotes/Images/DevelopmentTeamIDInfo.png b/Technotes/Images/DevelopmentTeamIDInfo.png new file mode 100644 index 000000000..eade5322c Binary files /dev/null and b/Technotes/Images/DevelopmentTeamIDInfo.png differ