Socket
Socket
Sign inDemoInstall

adb-toolkit

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adb-toolkit - npm Package Compare versions

Comparing version 0.4.15 to 0.4.16

2

package.json
{
"name": "adb-toolkit",
"version": "0.4.15",
"version": "0.4.16",
"description": "ADB toolkit",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -14,3 +14,3 @@ const shell = require('shelljs');

var devices = [];
adbDevices.forEach(line => {

@@ -150,2 +150,5 @@ if (line.includes("unauthorized")) {

},
reversePorts: function(inPort, outPort, callback) {
const output = shell.exec(`${adb} -s ${this.serial} reverse tcp:${inPort} tcp:${outPort}`, {}, callback);
},
uninstallPackage: function(packageName, callback) {

@@ -152,0 +155,0 @@ const output = shell.exec(`${adb} -s ${this.serial} uninstall ${packageName}`, {}, callback);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc