907 questions
1
vote
0
answers
26
views
Ignoring specific library for a module in Gradle
I have migrated our multi-module Gradle project from Mockito v1 to Mockito v3. As part of the migration, the following libraries were upgraded or added:
mockito-core from 1.10.19 to 3.12.4 (and added ...
0
votes
0
answers
6
views
Spring Multimodule Project DeploymentTest Errors
The project structure looks like this
sample
ㄴ file-sync-data(jpa project)
ㄴ ㄴ com.text.filesync.data
ㄴ ㄴ pom.xml
ㄴ file-sync-start-stream(scdf stream project)
ㄴ ㄴ com.test.filesync....
0
votes
0
answers
31
views
Code Coverage For Android Integration Tests In Multi-Module App
I am looking for some help generating a code coverage report for Android integration tests in a multi-module project. Specifically I have an app module along with a mix of android and java library ...
0
votes
0
answers
41
views
Convert Imported Maven Sub Module to a Maven Project in Eclipse
I have a multi-module maven project which I imported to Eclipse. I did struggle initially to import it with all its sub-modules but per what I remember, the sub-modules were not converted to Maven ...
0
votes
0
answers
42
views
Swagger UI and APIs of Other Modules Not Accessible in Multi-Module Spring Boot Project After Deployment
I am working on a multi-module Spring Boot project where I have configured Swagger to generate API documentation. The project structure includes several modules like client-management, institution-...
0
votes
0
answers
36
views
Find out dependedncy modules needed by a specific module in a multi-module Maven project
I have a multi module maven project
Relevant part of the parent pom.xml:
<modules>
<module>app-domain</module>
<module>app-infra</module>
<module>app-shared&...
0
votes
1
answer
206
views
Main class name has not been configured and it could not be resolved from classpath
I'm encountering an issue while implementing a Spring multi-module project and need some help. The goal is to structure the modules using Spring and build each module into a container using Docker.
...
1
vote
1
answer
107
views
Android: Multi module library doesn't work with implementation project without publishing all modules
I'm trying to publish a multi-module library but I only want to publish only want one module as follows:
-module main
-module data
-module domain
Sample app should implement only main module (as this ...
1
vote
1
answer
38
views
Android multi-module: How to get the title of a 'game' in the database?
I am building a multimodule gameapp with Compose and Koin dependency injection. Every module manages its own screens and navigation.
The structure is this:
app:
core:
|- common
feature:
|-games:
| |-...
0
votes
0
answers
14
views
How to create a parent project containing two independent projects in Android Studio [duplicate]
I have two separate Android projects: a camera project and an image editing project. I want to create a new parent project that includes both of these projects and allows them to start independently. ...
0
votes
0
answers
36
views
Xcode|CocoaPods: New files not appearing in SourceTree when created in submodules of iOS project
I am trying to create an iOS project with a multi-module architecture using CocoaPods local path. I use SourceTree to manage git.
Currently, I am facing an issue where new files created in the modules ...
0
votes
0
answers
28
views
When using Apple M CPU I encounter this error "Cannot fit requested classes in a single dex file"
This is not a question about what multidex is!
I am using a Macbook with M3 CPU. I have a modular project which has multidex enabled in its main module ("app" module). My problem is that ...
2
votes
1
answer
151
views
Why cant a Kotlin library Module depend on an Android Library Module?
I am trying to have this dependency graph:
presentation (Android Module) -> domain (Kotlin Module) -> data (Android module)
And whenever I make domain to depend on data implementation(projects....
0
votes
1
answer
141
views
Multi module build error :domain:main: Could not resolve project :data
I have a simple multi module structure
app module
presentation module (Android library Module)
domain module (Kotlin library Module)
data module (Android library Module)
The dependency graph I ...
0
votes
1
answer
16
views
Where to place datafiles in a multimodule project
I have a multimodule project with the following structure:
app:
core:
|- common
feature:
|-games:
| |-general:
| |-meaninggame:
|
|-settings
etc.
The game needs a list of proverbs whcihb ultimately ...