Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-17703] Fixed bug where Titanium namespace symbol processing was b... #6095

Merged
merged 1 commit into from
Sep 16, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 3 additions & 7 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3256,11 +3256,6 @@ iOSBuilder.prototype.copyResources = function copyResources(finished) {
};

iOSBuilder.prototype.processTiSymbols = function processTiSymbols(finished) {
// if we're including all titanium modules, then there's no point writing the defines.h
if (this.includeAllTiModules) {
return finished();
}

var namespaces = {
'analytics': 1,
'api': 1,
Expand Down Expand Up @@ -3313,8 +3308,9 @@ iOSBuilder.prototype.processTiSymbols = function processTiSymbols(finished) {
}
}, this);

// if we're doing a simulator build, return now since we don't care about writing the defines.h
if (this.target === 'simulator') {
// if we're doing a simulator build or we're including all titanium modules,
// return now since we don't care about writing the defines.h
if (this.target === 'simulator' || this.includeAllTiModules) {
return finished();
}

Expand Down