mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-05-11 12:37:34 +02:00
72c2ce82c1
* chore(deep-link): fix example, update documentation * update lock file * fix lint, add header * fmt
23 lines
376 B
Kotlin
23 lines
376 B
Kotlin
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.5.1")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
tasks.register("clean").configure {
|
|
delete("build")
|
|
}
|
|
|