Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'com.gradle.plugin-publish' version '0.11.0'
}

version '3.1.0'
version '3.1.1'

pluginBundle {
website = 'https://www.browserstack.com'
Expand All @@ -17,7 +17,7 @@ pluginBundle {
description = 'Runs Espresso tests on BrowserStack'
tags = ['espresso', 'test', 'browserstack', 'app', 'automate',
'app-automate', 'appautomate', 'app-live', 'applive']
version = '3.1.0'
version = '3.1.1'
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/browserstack/gradle/BrowserStackTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
import org.gradle.api.DefaultTask;
import org.gradle.api.tasks.Input;
import org.jetbrains.annotations.NotNull;
import org.gradle.api.tasks.Optional;


public class BrowserStackTask extends DefaultTask {

Expand All @@ -35,6 +37,7 @@ public class BrowserStackTask extends DefaultTask {
private String appVariantBaseName = "debug";

@Input
@Optional
public String command ;

public void setAppVariantBaseName(String appVariantBaseName) {
Expand Down