Search Gradle plugins

com.genymotion.plugin

The Genymotion Gradle Plugin allows you to control your Genymotion instances just with your build.gradle file

http://genymotion.com

Version 1.4 (latest)

Created 08 September 2017.

No version description available.

Using the plugins DSL:

plugins {
  id("com.genymotion.plugin") version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.genymotion:plugin:1.4")
  }
}

apply(plugin = "com.genymotion.plugin")

Using the plugins DSL:

plugins {
  id "com.genymotion.plugin" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.genymotion:plugin:1.4"
  }
}

apply plugin: "com.genymotion.plugin"

Learn how to apply plugins to subprojects