chore: clean up generated files and update gitignore

- remove api-docs.json from version control
- add src-tauri/gen/ to gitignore
This commit is contained in:
2026-05-24 23:35:17 +08:00
parent 91e22e1f89
commit 6c90b09ef7
44 changed files with 1015 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.11.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register("clean").configure {
delete("build")
}