Skip to content

Refactor dependencies to satisfy Android Studio's linter

akwizgran requested to merge project-dependencies into master

If an Android module depends on another module's default configuration, Android Studio's linter won't recognise references to classes in the other module. Instead, the Android module must depend on the other module without specifying a configuration. This entails some changes in the handling of transitive dependencies, and the other module must include its main classes in its testOutput artifact so the Android module's tests can use them.

Merge request reports