Ejemplo n.º 1
0
 public void Upload(string localPath, string remotePath)
 {
     ExternalUtil.Run(_adbPath, "-s " + _deviceId + " push \"" + localPath + "\" \"" + remotePath + "\"");
 }
Ejemplo n.º 2
0
 public static void Init()
 {
     ExternalUtil.LoadExternalTool("adb", ref _adbPath, "adbPath");
 }
Ejemplo n.º 3
0
 public void Delete(string path)
 {
     ExternalUtil.Run(_adbPath, "-s " + _deviceId + " shell rm -f \"" + path + "\"");
 }
Ejemplo n.º 4
0
 public static void Init()
 {
     ExternalUtil.LoadExternalTool("ffmpeg", ref _ffmpegPath, "ffmpegPath");
     ExternalUtil.LoadExternalTool("neroAacEnc", ref _neroAacEncPath, "neroAacEncPath");
 }