mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-04-29 22:24:35 +02:00
29 lines
578 B
Plaintext
29 lines
578 B
Plaintext
plugins {
|
|
alias(libs.plugins.androidLibrary)
|
|
alias(libs.plugins.kotlinAndroid)
|
|
}
|
|
|
|
android {
|
|
namespace = rootProject.ext["applicationId"].toString() + ".mapper"
|
|
compileSdk = 34
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "21"
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdk = 28
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.gson)
|
|
implementation(libs.coroutines)
|
|
implementation(libs.dexlib2)
|
|
testImplementation(libs.junit)
|
|
} |