blob: 3ce6d2154e633bf798552ddd449e9dac60a780bd [file] [log] [blame]
/*
* Copyright 2012-present Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package com.facebook.buck.cli;
import com.google.common.annotations.VisibleForTesting;
import org.kohsuke.args4j.Option;
public class AdbOptions {
@VisibleForTesting static final String ADB_THREADS_LONG_ARG = "--adb-threads";
@VisibleForTesting static final String ADB_THREADS_SHORT_ARG = "-T";
@Option(
name = ADB_THREADS_LONG_ARG,
aliases = { ADB_THREADS_SHORT_ARG },
usage = "Number of threads to use for adb operations. "+
"Defaults to number of connected devices.")
private int adbThreadCount = 0;
@VisibleForTesting static final String MULTI_INSTALL_MODE_SHORT_ARG = "-x";
@VisibleForTesting static final String MULTI_INSTALL_MODE_LONG_ARG = "-all";
@Option(
name = MULTI_INSTALL_MODE_LONG_ARG,
aliases = {MULTI_INSTALL_MODE_SHORT_ARG},
usage = "Install .apk on all connected devices and/or emulators (multi-install mode)"
)
private boolean multiInstallMode;
public int getAdbThreadCount() {
return adbThreadCount;
}
public boolean isMultiInstallModeEnabled() {
return multiInstallMode;
}
}