feat: 批量svg转Android xml

This commit is contained in:
2026-05-18 11:26:20 +08:00
commit 456f67bb6f
9 changed files with 512 additions and 0 deletions

25
build.gradle Normal file
View File

@@ -0,0 +1,25 @@
plugins {
id 'java'
}
group = 'com.ttstd'
version = '1.0-SNAPSHOT'
repositories {
google()
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// 引入 Android 官方的构建工具库
// 版本号可以根据当前最新的 Android Gradle Plugin 版本进行调整 (例如 30.2.0 对应 AGP 7.2.0)
implementation 'com.android.tools:sdk-common:32.2.1'
}
test {
useJUnitPlatform()
}