Search Gradle plugins

dev.teogor.drifter.plugin

Drifter simplifies the integration between Unity and Android, enhancing performance seamlessly and effortlessly.

https://github.com/teogor/drifter

Sources: https://github.com/teogor/drifter

Version 1.0.0-alpha01 (latest)

Created 27 September 2023.

Drifter simplifies the integration between Unity and Android, enhancing performance seamlessly and effortlessly.

Using the plugins DSL:

plugins {
  id("dev.teogor.drifter.plugin") version "1.0.0-alpha01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.drifter.plugin:drifter-plugin:1.0.0-alpha01")
  }
}

apply(plugin = "dev.teogor.drifter.plugin")

Using the plugins DSL:

plugins {
  id "dev.teogor.drifter.plugin" version "1.0.0-alpha01"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.drifter.plugin:drifter-plugin:1.0.0-alpha01"
  }
}

apply plugin: "dev.teogor.drifter.plugin"

Learn how to apply plugins to subprojects