feat: 批量svg转Android xml
This commit is contained in:
25
build.gradle
Normal file
25
build.gradle
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user