Search Gradle plugins

dev.teogor.drifter

Bridging the Gap between Unity and Android Development for Effortless Integration and Performance Enhancement.

https://source.teogor.dev/drifter

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

Version 1.0.0-alpha02 (latest)

Created 28 February 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "dev.teogor.drifter"

Learn how to apply plugins to subprojects