From 893e838bde4fc2dafca4e810b6e5fb4d37ff1a39 Mon Sep 17 00:00:00 2001 From: Max Rozdobudko Date: Wed, 18 Sep 2019 15:23:53 +0300 Subject: [PATCH] Apple Development & Apple Distribution certificate Adds support for new types of Apple certificates introduced in Xcode 11 --- codesign/certificates.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/codesign/certificates.go b/codesign/certificates.go index ceddb3ef..cae50270 100644 --- a/codesign/certificates.go +++ b/codesign/certificates.go @@ -19,8 +19,10 @@ const ( var ( iOSCertificateNames = []string{ - "iPhone Developer", //type: "iOS Development" + "iPhone Developer", // type: "iOS Development" "iPhone Distribution", // type: "iOS Distribution" + "Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH" + "Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE" } macOSCertificateNames = []string{ @@ -32,6 +34,8 @@ var ( macOSInstallerCertificateNames = []string{ "3rd Party Mac Developer Installer", // type: "Mac Installer Distribution" "Developer ID Installer", // type: "Developer ID Installer" + "Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH" + "Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE" } )