mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-21 17:51:36 +03:00
5f56cb0a8b
* feat(cli): Upgrade gradle to 8.9 and gradle-android to 8.5.1 * Update .changes/android-gradle-8-9.md --------- Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
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.5.1")
|
|
}
|
|
|