mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-21 09:41:34 +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>
25 lines
463 B
Plaintext
25 lines
463 B
Plaintext
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.5.1")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
|
|
{{~#each android-project-dependencies}}
|
|
classpath("{{this}}"){{/each}}
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.register("clean").configure {
|
|
delete("build")
|
|
}
|
|
|