:
|- myApplication
| |- settigs.gradle
| |- build.gradle
| ...
|- myLibrary
|- build.gradle
...
settings.gradle:
include ':myLibrary'
project(':myLibrary').projectDir = new File(settingsDir, '../myLibrary')
build.gradle( )
compile project(':myLibrary')
Your library just turns on, and you can debug and set breakpoints, as in the application.
source
share