mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-21 01:32:03 +03:00
5a9307d11c
* feat(cli): update android template to gradle 8.0 * update java in CI to 17 * updat to latest tauri-mobile
25 lines
463 B
Plaintext
25 lines
463 B
Plaintext
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.0.0")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
|
|
{{~#each android-project-dependencies}}
|
|
classpath("{{this}}"){{/each}}
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.register("clean").configure {
|
|
delete("build")
|
|
}
|
|
|