Я включил подмодуль с помощью git submodule add, и теперь мой проект структура выглядит следующим образом:
Код: Выделить всё
-EffectiveMobileTest2domain
-domainApp
-build.gradle.kts
-EffectiveMobileTest2data
-dataApp
-build.gradle.kts
-settings.gradle.kts
-build.gradle.kts
-settings.gradle.kts
-build.gradle.kts
Код: Выделить всё
rootProject.name = "EffectiveMobileTest2domain"
include(":domainApp")
includeBuild("EffectiveMobileTest2data")
Код: Выделить всё
dependencies {
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation(libs.material)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
implementation("com.mishbanya:dataApp")
}
Код: Выделить всё
android {
namespace = "com.mishbanya.effectivemobiletest2data"
...
Не удалось разрешить: com.mishbanya:dataApp
< /blockquote>
что и как мне нужно реализовать в build.gradle.kts (:domainApp) ??
Подробнее здесь: https://stackoverflow.com/questions/791 ... mportbuild
Мобильная версия