Skip to content

Commit

Permalink
Merge pull request #8895 from sgtcoolguy/TIMOB-24480-6_0_X-take-2
Browse files Browse the repository at this point in the history
(6_0_X) [TIMOB-24480] Android: appc run based module builds fail due to double-namespaced classes in KrollGeneratedBindings.gperf
  • Loading branch information
hansemannn committed Mar 20, 2017
2 parents 96ea447 + 96881f6 commit 9b221b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/cli/commands/_buildModule.js
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ AndroidModuleBuilder.prototype.generateV8Bindings = function (next) {
return s.toLowerCase();
});

if (!(moduleNamespace in namespaces)) {
if (namespaces.indexOf(moduleNamespace) == -1) {
namespaces.unshift(moduleNamespace.split('.').join('::'));
}

Expand Down

0 comments on commit 9b221b6

Please sign in to comment.