#include <string>

namespace Adb {

int Shell(const std::string& command, std::string& response);

int Shell(const std::string& command, bool hide_output=true);

int Install(const std::string& path, bool hide_output=true);

int Uninstall(const std::string& path, bool hide_output=true);

int Push(const std::string& src, const std::string& dst);

int Remount();

bool isFileExists(const std::string &path);

}
