My project is including some library project. Library is using some aar files and its dependecny is already defined in the module: gradle file. I am facing problem in includ
You need to include the jcenter repository. In the app level build.gradle type:
repositories { jcenter() } dependencies { compile 'com.package.youraarpackagename@aar' }
These dependencies are different from your other ones.