mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-22 10:11:32 +03:00
5a9307d11c
* feat(cli): update android template to gradle 8.0 * update java in CI to 17 * updat to latest tauri-mobile
24 lines
344 B
Plaintext
24 lines
344 B
Plaintext
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")
|
|
}
|
|
|