Use implementation instead of api.

This is recommended as a best practice, though AFAIK this only matters
for projects that are going to be imported by other projects.

For instance, you used to be able to include `:deps:extension-api` by
including any extension that depended on it. Now, every project that
wants to use `extension-api` has to include it directly. (Which is fine
because in practice, they all already do so.)
This commit is contained in:
Joseph Cloutier
2022-06-11 20:08:54 -04:00
parent 619b67b472
commit 00fd063026
3 changed files with 4 additions and 4 deletions

View File

@@ -17,5 +17,5 @@ android {
}
dependencies {
api project(':deps:extension-api')
implementation project(':deps:extension-api')
}