How would I add debug dependencies for my android ...
# multiplatform
z
How would I add debug dependencies for my android sourceset? normally its just
debugImplementation
m
Add a top level dependencies block, and it will likely be something like
Copy code
dependencies {
    androidDebugImplementation()
}
z
is there no way to add it inside the sourceset with all my other dependencies?
m
Not from what I know, the sourceset dependencies block is more restrictive, for advanced dependency features like excludes and variants I've had to use the top level one
j
@Mitchell Syer @zt follow up question: Have you figured out a good solution on how to deal with product flavor / build variants in KMP?