> Failed to resolve: AndroidStyling-LintRules:checks:unspecified
> Affected Modules: app
So I tested running ./gradlew publishToMavenLocal and this was thrown:
* What went wrong:
Execution failed for task ':styling-lint:publishAndroidPublicationToMavenLocal'.
> Failed to publish publication 'android' to repository 'mavenLocal'
> Invalid publication 'android': artifact file does not exist: '.../styling-lint/build/outputs/aar/styling-lint-release.aar'
I found what was missing so after fixing it by adding builtBy:
publishToMavenLocal builds successfully and I can use mavenLocal() to import and it works.
Unfortunately, importing from remote still fails with the same output...
I've a lint lib that fails to import throwing:
So I tested running
./gradlew publishToMavenLocal
and this was thrown:I found what was missing so after fixing it by adding
builtBy
:publishToMavenLocal
builds successfully and I can usemavenLocal()
to import and it works. Unfortunately, importing from remote still fails with the same output...What am I missing?
Thanks.