In my Android Studio Gradle project I use several libraries, whereas one library should use a local AAR file as dependency. I used the popular solution to include the AAR file a
In case the answer by user1033552 doesn't work. In my case, it didn't work.
Below steps worked for me.
include ':imported-aar', ':your-library', ':app'
compile project(':imported-aar')