Maicol
06/26/2024, 10:02 PM:processor:main: Could not resolve project :annotation.
Required by:
project :processor
Possible solution:
- Declare repository providing the artifact, see the documentation at <https://docs.gradle.org/current/userguide/declaring_repositories.html>
Any idea on how to fix it?
ThanksRyan Hintze
06/27/2024, 3:24 PM:annotation
doesn't have a jvm target required by :processor
(android doesn't count). You have to add a jvm { }
block inside the :annotation gradle's kotlin { }
block.Maicol
06/27/2024, 4:24 PM