mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-05-03 07:54:30 +02:00

* build: update libraries * ci: remove android workflow --------- Co-authored-by: auth <64337177+authorisation@users.noreply.github.com> Co-authored-by: rhunk <101876869+rhunk@users.noreply.github.com>
25 lines
531 B
Plaintext
25 lines
531 B
Plaintext
plugins {
|
|
alias(libs.plugins.androidLibrary)
|
|
alias(libs.plugins.kotlinAndroid)
|
|
}
|
|
|
|
android {
|
|
namespace = rootProject.ext["applicationId"].toString() + ".mapper"
|
|
compileSdk = 34
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.gson)
|
|
implementation(libs.coroutines)
|
|
implementation(libs.dexlib2)
|
|
testImplementation(libs.junit)
|
|
} |