Package com.android.ddmlib

Examples of com.android.ddmlib.SyncService.push()


   * @throws SyncException
   */
  public static void pushFile(IDevice device, final String[] localFrom, final FileEntry remoteTo)
        throws TimeoutException, AdbCommandRejectedException, IOException{
    SyncService server = device.getSyncService();
    SyncResult result = server.push(localFrom, remoteTo, SyncService.getNullProgressMonitor());
    UIHelper.showMessageDialog(result.getMessage());
//        new SyncProgressMonitorAdapter(){
//      @Override
//      public void stop() {
//        UIHelper.showMessageDialog("upload  " + localFrom[0] + " to " + remoteTo.getFullPath() + " stop");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.