The problem is, I previously used a github repository (https://github.com/kenglxn/QRGen) as my dependency:
compile 'com.github.kenglxn.QRGen:android:2.4.0'
It worked fine but now i have forked the repository, made some changes and I'm trying to use my repository as dependency, my repository: https://github.com/prasenjeetpaul/QRGen, I'm trying as:
compile 'com.github.prasenjeetpaul.QRGen:android:2.4.0'
I have sync the project many times but couldn't use my repository code, even after removing the old dependency it is still using the old code but not the new code from my github repository.
Is there a way to remove the old dependency code and use my new repository code??
Please help!