Skip to content

Commit

Permalink
Merge pull request #109 from garymathews/TIMOB-24176_2_0_X
Browse files Browse the repository at this point in the history
[2_0_X][TIMOB-24176] Android: Fix AAR jars array
  • Loading branch information
hansemannn committed Dec 12, 2016
2 parents c0e1109 + c704f70 commit ed3aa5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/plugins/hyperloop/hooks/android/hyperloop.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ exports.cliVersion = '>=3.2';
if (err) {
return cb(err);
}
jars.push(foundJars);
jars = jars.concat(foundJars);
cb();
});
}, next);
Expand Down

0 comments on commit ed3aa5f

Please sign in to comment.