Skip to content

Commit

Permalink
Lock the CODE_SIGNING_IDENTITY for iOS dev builds (#28)
Browse files Browse the repository at this point in the history
This should help resolve issues where Xcode gets confused and selects
the wrong identity for development.
  • Loading branch information
mokagio authored Jul 25, 2024
1 parent b23bd6b commit 0857170
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ios/App/App/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#include "Base.xcconfig"

CODE_SIGN_IDENTITY = Apple Development
// Locked to a specific identity rather than the generic "Apple Development"
// to avoid Xcode resolving to a valid development identity for the
// DEVELOPMENT_TEAM that is not the one used in the provisioning profile
// specified below.
CODE_SIGN_IDENTITY = Apple Development: Created via API (886NX39KP6)

PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*] = match Development com.ellavandurpe.blocknotes
PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = match Development com.ellavandurpe.blocknotes catalyst

0 comments on commit 0857170

Please sign in to comment.