Reputation: 6723
I found this Github repository: https://github.com/applidium/HeaderListView and I want to include it in my Android App in AndroidStudio by adding just a single line to the repository to the build.gradle file, e.g.:
compile 'com.COMPANY.PROJECT:PROJECT:1.0.0'
Now, since the above mentioned HeaderListView project is lacking gradle support, I want to fork it and add gradle support. How can I achieve this? Can you please give me examples or point me to any tutorial or documentation about this topic?
Upvotes: 0
Views: 812
Reputation: 191
You need only import HeaderListView project,and add include ':HeaderListView'
into settings.gradle, then add
dependencies {
compile project(':HeaderListView')
}
into your main project's build.gradle.
Upvotes: 1
Reputation: 691
You need to upload it to Maven Central. Once it's live there, you can refer it as you asked
Upvotes: 1