dev.teogor.drifter.plugin
Owner: Teodor Grigor
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)
1.0.0-alpha01
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"