How to edit the code of a library imported with Gradle in Android Studio? -
i'm facing little problem 1 of libraries in android studio. 1 imported gradle file, :
dependencies { compile 'com.github.navasmdc:materialdesign:1.5@aar' }
it has known issue github repository can fix editing 1 line of code in file of library... problem can't find code in android studio.
from stackoverflow post, i've found :
apply plugin: 'idea' idea{ module { downloadjavadoc = true downloadsources = true } }
but after applying , reloading gradle configuration, still can't find code.
can help?
thanks!
you can extend class , override method. after overriding update code according need , solve bug , use new class :-)
Comments
Post a Comment