feat: empty scripting engine submodule

This commit is contained in:
rhunk
2023-09-13 16:19:12 +02:00
parent 684cb26116
commit 554ead7e9a
3 changed files with 19 additions and 0 deletions

1
scripting/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
build/

View File

@@ -0,0 +1,17 @@
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"))
}

View File

@@ -21,3 +21,4 @@ include(":core")
include(":app")
include(":mapper")
include(":native")
include(":scripting")