repo1.maven.org$maven2@org.jvnet.hudson.plugins$android-emulator@1.6
repo1.maven.org$maven2@org.jvnet.hudson.plugins$android-emulator@1.6@hudson$plugins$android_emulator$Utils.java
file
oh
o
[]
package hudson.plugins.android_emulator;
import hudson.util.ArgumentListBuilder;
Generates a ready-to-use ArgumentListBuilder for one of the Android SDK tools.
- Parameters:
androidSdk The Android SDK to use.isUnix Whether the system where this command should run is sane.tool The Android tool to run.args Any extra arguments for the command.- Returns:
- Arguments including the full path to the SDK and any extra Windows stuff required.
androidToolsDir = androidSdk.getSdkRoot() +"/platform-tools/";
androidToolsDir = androidSdk.getSdkRoot() +"/tools/";
ArgumentListBuilder builder = new ArgumentListBuilder(androidToolsDir + executable);
builder.add(Util.tokenize(args));