Skip to content

Commit

Permalink
Merge pull request #7968 from hansemannn/TIMOB-17335-5_3_X
Browse files Browse the repository at this point in the history
[TIMOB-17335] (5_3_X) iOS: Support share extensions
  • Loading branch information
cheekiatng committed Apr 29, 2016
2 parents f7822ad + f3b61c4 commit 4be54bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3133,10 +3133,10 @@ iOSBuilder.prototype.createXcodeProject = function createXcodeProject(next) {
xobjs.PBXBuildFile[copyFilesUuid + '_comment'] = productName + ' in ' + name;
}

if (targetInfo.isWatchAppV1Extension) {
addEmbedBuildPhase.call(this, 'Embed App Extensions', null, 13 /* type "plugin" */);
} else if (targetInfo.isWatchAppV2orNewer) {
if (targetInfo.isWatchAppV2orNewer) {
addEmbedBuildPhase.call(this, 'Embed Watch Content', '$(CONTENTS_FOLDER_PATH)/Watch', 16 /* type "watch app" */);
} else {
addEmbedBuildPhase.call(this, 'Embed App Extensions', null, 13 /* type "plugin" */);
}
}
}, this);
Expand Down

0 comments on commit 4be54bf

Please sign in to comment.