I made a module library in android studio 1.0.0. From that I took the .aar file & used it to other project. But after updating my android studio to 1.1.0 when I import it, I does not get any reference from it.
Doing some research I found that it is for gradle build version in build.gradle
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
}
If downgrade it to 1.0.0 then any references from .aar file(1.0.0) are found. But I think this is not best solution. So, any help would be appreciable.
Thanks