Reputation: 969
I am developing a library project. Right now my debugging process is something like this :
As you can see it's a long process and takes a lot of time to debug library. What is the proper way for library development using android studio?
Upvotes: 0
Views: 1540
Reputation: 499
You can do this way:
No need to create aar , just make changes in lib module and Run your main project and debug it .
Hope this will help you !
Upvotes: 2
Reputation: 5617
I would include a demo-app project in parallel to library project:
// /settings.gradle
include ':app', ':lib'
// /app/build.gradle
depencency {
compile project(':lib')
}
Upvotes: 0