We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1668b commit 823003cCopy full SHA for 823003c
src/scripts/ios/enableEntitlements.js
@@ -5,6 +5,7 @@
5
var compare = require('node-version-compare')
6
var IOS_DEPLOYMENT_TARGET = '8.0'
7
var COMMENT_KEY = /_comment$/
8
+ var CODESIGNIDENTITY = 'iPhone Developer'
9
10
// entry
11
module.exports = {
@@ -29,6 +30,7 @@
29
30
31
for (config in configurations) {
32
buildSettings = configurations[config].buildSettings
33
+ buildSettings.CODE_SIGN_IDENTITY = '"' + CODESIGNIDENTITY + '"'
34
buildSettings.CODE_SIGN_ENTITLEMENTS = '"' + entitlementsFile + '"'
35
36
// if deployment target is less then the required one - increase it
0 commit comments