java - Android studio can't edit library -


i downloaded this library , extracted rar app\libs folder.

then added compile 'com.github.lzyzsd:circleprogress:1.1.0@aar' build gradle says, , clicked on sync.

then noticed max set 100 (in file donutprogress.java). changed 5, clicked on sync again nothing changed. after few hours of trying decided remove extracted folder app\libs , sync again see happens.

surprisingly, still working library still there. can explain me what's happening here, have edit seems whatever library doesn't affect app. seems it's using library totally different folder, don't know, tried searching donutprogress on computer didn't find seems useful.

please help.

when add compile 'com.github.lzyzsd:circleprogress:1.1.0@aar' build.gradle dependencies, telling gradle go fetch library repository when build.

for android apps, means when build, gradle go , download library (in case .aar) jcenter. because means no longer need manage jars (or other library files) yourself.

if want use custom version of library, should not add dependency gradle build script. instead should add either module or local dependency (e.g. compile files('libs/custom_library_name.aar')).


Comments