Hi,
has anyone encourage problem with debugging in Android Studio using library projects?
My project structure is a follows:
/
-- lib-project
-- my-app
in settings.gradle I have
include ':lib-project, ':my-app'
and of course my-app gradle as in dependencies
compile project(':lib-project')
I think I don't have explain why I divided project into smaller parts but I'd like to use debugger to check if everything goes according to flow. Android Studio when comes to classes from library project doesn't show sources ?!
Do you know any solution for Android Studio? or maybe always attach sources to aar - if so how it's possible?
Thanks,
Przemek