6.7.0 - Alpha6 - Gradle 构建脚本转换 (Groovy -> Kotlin DSL)
This commit is contained in:
28
modules/apk-parser/build.gradle.kts
Normal file
28
modules/apk-parser/build.gradle.kts
Normal file
@@ -0,0 +1,28 @@
|
||||
plugins {
|
||||
id("org.autojs.build.versions")
|
||||
id("org.autojs.build.jvm-convention")
|
||||
id("com.android.library")
|
||||
id("kotlin-android")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "net.dongliu.apk.parser"
|
||||
version = "6"
|
||||
compileSdk = versions.sdkVersionCompile
|
||||
|
||||
defaultConfig {
|
||||
minSdk = versions.sdkVersionMin
|
||||
consumerProguardFiles("consumer-rules.pro")
|
||||
multiDexEnabled = true
|
||||
}
|
||||
|
||||
lint {
|
||||
targetSdk = versions.sdkVersionTarget
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(libs.bcprov.jdk15on)
|
||||
implementation(libs.bcpkix.jdk15on)
|
||||
implementation(libs.annotation)
|
||||
}
|
||||
Reference in New Issue
Block a user