I am developing an `Android SDK` which contains mu...
# gradle
r
I am developing an
Android SDK
which contains multiple modules. When i generate artifacts(aars) using
maven plugin
, POM file always generates the dependencies with
compile
scope even though i have both api and implementation dependencies. I am expecting that
implementation
dependencies will be scoped to
runtime
in POM. That way the client app will not see the SDK internal dependencies. Any ideas how to resolve this issue?