Files
Svg2Vector/build.gradle

25 lines
579 B
Groovy

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()
}