4

Adding a dynamic module into multi module project that already has 6 flavours.

Got this error,

ERROR: Unable to resolve dependency for ':dynMod@debug/compileClasspath': Could not resolve project :app.
Show Details
Affected Modules: dynMod

Created similar product flavours in dynamic module solved the issue. I did actually take builds and tested. Now not sure what went wrong but i'm getting this,

java.io.IOException: Cannot find PROCESSED_RES output for Main{type=MAIN, fullName=flavor1Debug, filters=[], versionCode=-1, versionName=null}

Can anyone help, please.

Sivakumar S
  • 681
  • 5
  • 19

1 Answers1

8

The project had abiSplit configuration. Disabling it solved the issue.

//    splits {
//        abi {
//            enable true
//            universalApk true
//        }
//    }
Sivakumar S
  • 681
  • 5
  • 19