0

I am using an open source library project from GitHub in my Android Application. I've modified that library to work with my specific needs. Now that library has been updated with more cool features.

If I want to use the updated library, I've to download it and again I've to put my older modifications manually. Instead of that is there any process, so that I can use latest libraries from GitHub still with my modifications.

Your help is appreciated.

Sadeshkumar Periyasamy
  • 4,848
  • 1
  • 26
  • 31

1 Answers1

2

You want to fork that repository on Github, add your changes onto that, then merge the upstream changes once they come out. You could even add your fork of this library as a submodule in your main project.

Hope that helps. Good luck!

Christian Ternus
  • 8,406
  • 24
  • 39