I am having a problem with Android Studio recognizing classes inside @aar library imported locally.
So ... I created a library and exported the aar file. Inside the Android studio, I selected Import Module and their Import .JAR or .AAR Package .
The project compiles and works with classes inside the aar file, but Android studio cannot find classes or offer automatic completion like that for everyone.
Here are some screenshots:



A similar problem occurs with other imported @aar libraries: 
Any suggestions?
Edit:
build.gradle:
... dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':UpPlatformSdk') compile project(':simpleorm') ...
settings.gradle:
include ':app', ':UpPlatformSdk', ':wear', ':simpleorm'
source share