first commit

This commit is contained in:
aOK 2023-09-25 22:51:18 +03:00
commit 1b1cd2e064
175 changed files with 7095 additions and 0 deletions

View file

@ -0,0 +1,23 @@
plugins {
`kotlin-dsl`
}
gradlePlugin {
plugins {
create("pluginsForCoolKids") {
id = "rust"
implementationClass = "RustPlugin"
}
}
}
repositories {
google()
mavenCentral()
}
dependencies {
compileOnly(gradleApi())
implementation("com.android.tools.build:gradle:8.0.0")
}