Add simple log for package name being deployed

This commit is contained in:
Nikhil Khandelwal 2016-04-20 09:35:55 -07:00
parent 40a740b45c
commit e4ecbad3cb
2 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,7 @@ module.exports.install = function(target, buildResults) {
var pkgName = manifest.getPackageId();
var launchName = pkgName + '/.' + manifest.getActivity().getName();
events.emit('log', 'Using apk: ' + apk_path);
events.emit('log', 'Package name: ' + pkgName);
return Adb.install(resolvedTarget.target, apk_path, {replace: true})
.catch(function (error) {

View File

@ -354,6 +354,7 @@ module.exports.install = function(givenTarget, buildResults) {
};
events.emit('log', 'Using apk: ' + apk_path);
events.emit('log', 'Package name: ' + pkgName);
events.emit('verbose', 'Installing app on emulator...');
// A special function to call adb install in specific environment w/ specific options.