Unable to compile android project – dependency issue 11. May / Android / No Comments Most of the time i see this issue on my android studio, while compling the application Error:A problem occurred configuring project ':app'. Could not resolve all dependencies for configuration ':app:_debugCompile'. Could not find com.android.support:appcompat-v7:21.0.1. 123 Error:A problem occurred configuring project ':app'. Could not resolve all dependencies for configuration ':app:_debugCompile'. Could not find com.android.support:appcompat-v7:21.0.1. It is because the android studio couldnot find some of the libraries. Make sure you have them installed all the necessary libraries. Here are some dependencies requirement for Android sdk versions above 21. You can modify this in your build.gradle file. dependencies{ //it requires compileSdkVersion 23 compile 'com.android.support:appcompat-v7:23.2.0' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:appcompat-v7:23.1.0' compile 'com.android.support:appcompat-v7:23.0.1' compile 'com.android.support:appcompat-v7:23.0.0' //it requires compileSdkVersion 22 compile 'com.android.support:appcompat-v7:22.2.1' compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.android.support:appcompat-v7:22.1.1' compile 'com.android.support:appcompat-v7:22.1.0' compile 'com.android.support:appcompat-v7:22.0.0' //it requires compileSdkVersion 21 compile 'com.android.support:appcompat-v7:21.0.3' compile 'com.android.support:appcompat-v7:21.0.2' compile 'com.android.support:appcompat-v7:21.0.0' } 12345678910111213141516171819202122 dependencies{ //it requires compileSdkVersion 23 compile 'com.android.support:appcompat-v7:23.2.0' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:appcompat-v7:23.1.0' compile 'com.android.support:appcompat-v7:23.0.1' compile 'com.android.support:appcompat-v7:23.0.0' //it requires compileSdkVersion 22 compile 'com.android.support:appcompat-v7:22.2.1' compile 'com.android.support:appcompat-v7:22.2.0' compile 'com.android.support:appcompat-v7:22.1.1' compile 'com.android.support:appcompat-v7:22.1.0' compile 'com.android.support:appcompat-v7:22.0.0' //it requires compileSdkVersion 21 compile 'com.android.support:appcompat-v7:21.0.3' compile 'com.android.support:appcompat-v7:21.0.2' compile 'com.android.support:appcompat-v7:21.0.0' } sathyabaman I am a mobile application consultant with 7 years of experience in IT industry .
Unable to compile android project – dependency issue
Most of the time i see this issue on my android studio, while compling the application
It is because the android studio couldnot find some of the libraries. Make sure you have them installed all the necessary libraries.
Here are some dependencies requirement for Android sdk versions above 21. You can modify this in your build.gradle file.
sathyabaman
I am a mobile application consultant with 7 years of experience in IT industry .
You might also like
implementing Android WebView
Signal R in Android
Download Pokemon go V0.33.0 – Android Apk
Android Loading images to Recycler View
Next ArticlePrivacy in Ubiquitous Computing