I created two Android Studio applications. One of them is aar library. I used this aar library in second application. I added aar library by using File->New->New Module->Import AAR/JAR Packages option. after that I can see decompiled sources of my aar library. When I update aar library I copy and paste new aar file to my application project folder. But this time Android Studio shows older decompiled sources. But compile new source successfully. How can I update decompiled sources in Android Studio ? when I import aar file implementation project(':app-debug')
line was added my build.gradle
file.
I am using Android Studio 3.0.1
my solution
the only way I can find to update local sources is clicking Sync Project with Gradle Files button after updating aar/jar file.