I've got ``` app - libs - src mysdk ``` in this...
# android
m
I've got
Copy code
app 
 - libs
 - src
mysdk
in this case "mysdk" is a module which I build aar for artifactory. End to end, I've got things working except that, I'd like to actually be able to use mysdk within this app, without having to go through the build process and download from artifactory. I do have :mysdk in the includes at settings.gradle.kts in root. I've tried
implementation(":mysdk")
but that's not really a thing. Links to tutes for this? Basically, I'm trying to find a way to debug while developing and to see my results in a "sample app". sort of thing.