mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2024-11-22 21:36:09 +03:00
79 lines
2.2 KiB
Plaintext
79 lines
2.2 KiB
Plaintext
|
plugins {
|
||
|
id("com.android.library")
|
||
|
kotlin("android")
|
||
|
kotlin("kapt")
|
||
|
id("kotlinx-serialization")
|
||
|
id("com.google.devtools.ksp")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdk = buildTargetSdkVersion
|
||
|
|
||
|
flavorDimensions(buildFlavor)
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk = buildMinSdkVersion
|
||
|
targetSdk = buildTargetSdkVersion
|
||
|
|
||
|
versionCode = buildVersionCode
|
||
|
versionName = buildVersionName
|
||
|
|
||
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
named("release") {
|
||
|
isMinifyEnabled = false
|
||
|
proguardFiles(
|
||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
"proguard-rules.pro"
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
productFlavors {
|
||
|
create("open") {
|
||
|
dimension = "open"
|
||
|
}
|
||
|
create("premium") {
|
||
|
dimension = "premium"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
jvmTarget = "1.8"
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
named("debug") {
|
||
|
java.srcDir(buildDir.resolve("generated/ksp/debug/kotlin"))
|
||
|
}
|
||
|
named("release") {
|
||
|
java.srcDir(buildDir.resolve("generated/ksp/release/kotlin"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
ksp("com.github.kr328.kaidl:kaidl:$kaidlVersion")
|
||
|
kapt("androidx.room:room-compiler:$roomVersion")
|
||
|
|
||
|
api(project(":core"))
|
||
|
api(project(":common"))
|
||
|
|
||
|
implementation(kotlin("stdlib-jdk7"))
|
||
|
implementation("com.github.kr328.kaidl:kaidl-runtime:$kaidlVersion")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineVersion")
|
||
|
implementation("androidx.room:room-runtime:$roomVersion")
|
||
|
implementation("androidx.room:room-ktx:$roomVersion")
|
||
|
implementation("androidx.core:core-ktx:$ktxVersion")
|
||
|
implementation("com.microsoft.appcenter:appcenter-analytics:$appcenterVersion")
|
||
|
implementation("com.microsoft.appcenter:appcenter-crashes:$appcenterVersion")
|
||
|
implementation("dev.rikka.rikkax.preference:multiprocess:$muiltprocessVersion")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
||
|
}
|