<@U5G61457Y> I just tried to upgrade to AGP 3.0.0-...
# android
s
@yperess I just tried to upgrade to AGP 3.0.0-beta2, and I'm running into the same issue with using extension functions across modules. Also an extension on
Context
, by the way 🤔
g
Do you use
implementation
configuration for module dependencies?
s
jup
g
dependencies with
implementation
configuration available only in current module, so they are not transient. Maybe it’s your case
s
Well, the dependency tree is pretty simple here. No transitive dependencies required.
In fact: all other classes from my
util
library project are found correctly. Seems like only the extension functions/variables are problematic.
y
Yup, only extension functions get lost. This has nothing to do with
implementation
vs
api
, that could only make a difference if the dependency tree was 3+ levels deep.