Failed to run scan on android multi module project

I’m trying to setup sonarQube for Android multi module gradle project ,
my project structure is

app/
      build.gradle
submodule
     data/
     build.gradle
     impl/
     build.gradle

submodule is a folder , inside it has two module data and impl

it is configured settings.gradle as follows

include(":submodule:data)
project(XXX)
include(":submodule:impl)

SonarQube is not able to handle this structure and always throwing below error

The base directory of the module ‘:submodule’ does not exist: ../[xxx]/submodule

basically gradle can handle this configuration but sonarQube is failed to detect and report above error due to two columns exists in module path configuration

how do i resolve this issue and any other advise to run sonaryQube for all module ?

Hey there.

What version of SonarQube are you using, and what version of the SonarScanner for Gradle are you using?

It would also be great if you could provide a small sample project which reproduces the error.

Appreciating you for checking this question ,
version of sonarQube gradle is 6.0.1.5171
Server * Community Build v25.4.0.105899
Here is the structure of the project to give you basic idea , i will get the sample project created and shared here as soon as i can
App /build.gradle
module |
_ logging(folder)
|
|-> data /build.gradle
| _ Iml /build.gradle

gradle configuration like this
include(“:logging:data)
project(XXX)
include(”:logging:impl)

Erorr : The base directory of the module ‘:submodule’ does not exist: ../[xxx]/submodule

Therefore , my understanding with error is sonarQube is failing to parse value after “:logging” and stating logging directory does not exists
I will try to get the sample project as soon as i can. thank you