Hadji Musaev
10/27/2021, 2:39 PMExecution failed for task ‘:generateDebugBuildConfig’.
> Error while evaluating property ‘buildConfigPackageName’ of task ‘:generateDebugBuildConfig’
> Failed to calculate the value of task ‘:generateDebugBuildConfig’ property ‘buildConfigPackageName’.
> Failed to query the value of property ‘packageName’.
> Manifest file does not exist: /…/src/main/AndroidManifest.xmlAnd indeed the project structure is different and my android modules are
androidMain
and androidTest
, not just main
and test
. Has anyone had to solve this problem?Daniel Rampelt
10/27/2021, 2:43 PMandroid {
sourceSets {
getByName("main") {
manifest.srcFile("src/androidMain/AndroidManifest.xml")
}
}
Hadji Musaev
10/27/2021, 2:46 PM