diff --git a/bin/templates/cordova/lib/device.js b/bin/templates/cordova/lib/device.js index 4f9acc8a..4b171db6 100644 --- a/bin/templates/cordova/lib/device.js +++ b/bin/templates/cordova/lib/device.js @@ -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) { diff --git a/bin/templates/cordova/lib/emulator.js b/bin/templates/cordova/lib/emulator.js index 0b0c39ac..600c7da6 100644 --- a/bin/templates/cordova/lib/emulator.js +++ b/bin/templates/cordova/lib/emulator.js @@ -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.