diff --git a/common/build.gradle.kts b/common/build.gradle.kts index fd0831d2..ffe09202 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -32,6 +32,5 @@ dependencies { implementation(libs.androidx.documentfile) implementation(libs.rhino) - implementation(project(":stub")) implementation(project(":mapper")) } \ No newline at end of file diff --git a/stub/src/main/java/javax/lang/model/SourceVersion.java b/common/src/main/java/javax/lang/model/SourceVersion.java similarity index 100% rename from stub/src/main/java/javax/lang/model/SourceVersion.java rename to common/src/main/java/javax/lang/model/SourceVersion.java diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 7720db32..7e31254e 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -26,7 +26,6 @@ dependencies { implementation(libs.rhino) implementation(project(":common")) - implementation(project(":stub")) implementation(project(":mapper")) implementation(project(":native")) } \ No newline at end of file diff --git a/settings.gradle.kts b/settings.gradle.kts index ad843857..e0b7738c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -21,5 +21,4 @@ include(":common") include(":core") include(":app") include(":mapper") -include(":native") -include(":stub") \ No newline at end of file +include(":native") \ No newline at end of file diff --git a/stub/.gitignore b/stub/.gitignore deleted file mode 100644 index 42afabfd..00000000 --- a/stub/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/stub/build.gradle.kts b/stub/build.gradle.kts deleted file mode 100644 index ad410228..00000000 --- a/stub/build.gradle.kts +++ /dev/null @@ -1,14 +0,0 @@ -plugins { - alias(libs.plugins.androidLibrary) - alias(libs.plugins.kotlinAndroid) -} - - -android { - namespace = rootProject.ext["applicationId"].toString() + ".stub" - compileSdk = 34 - - kotlinOptions { - jvmTarget = "1.8" - } -}