mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-06-01 22:40:18 +02:00
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
plugins {
|
|
alias(libs.plugins.androidLibrary)
|
|
alias(libs.plugins.kotlinAndroid)
|
|
}
|
|
|
|
android {
|
|
namespace = rootProject.ext["applicationId"].toString() + ".scripting"
|
|
compileSdk = 34
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
} |