fix docker for tauri app

This commit is contained in:
lendry
2026-06-26 17:31:05 +03:00
parent 3ab48d8537
commit c23f35e732
42 changed files with 944 additions and 34 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.11.0")
}