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