My Android Studio is full of error android studio cannot identify libraries.
Error:(27, 13) Failed to resolve: com.android.support:appcompat-v7:25.1.0
There is a problem with latest libraries to be automatically installed by clicking
Install Repository and sync project
Go to SDK Manager and install your missing or not up-to-date packages from below tab:
After you select desired library, click Apply and wait for installation to complete.
click the link
"Install Repository and sync project"
Firstly, you will go (your_folder_app)\app\app.iml, which open your notepad software. After you will find: and you change to 27 with your version, for example for me, i change to 25.
Secondly, you will change the build.gradle(Moudule:app) in your android studio. Red arrow show that you should to change.enter image description here. Example for me:enter image description here
Finally, you will click "Try Again"
Replace whatever build gradle version with this
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
}
Then Click on
Fix Gradle wrapper and re-import the project
Make sure that the repositories section includes a maven section with the "https://maven.google.com" endpoint. For example:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
Update:
allprojects {
repositories {
google()
// If you're using a version of Gradle lower than 4.1, you must
// instead use:
//
// maven {
// url 'https://maven.google.com'
// }
}
}
See android documention for details
buildToolsVersion
version 23.0.1 to
25.0.1compileSdkVersion
25Finally
compileSdkVersion 25
buildToolsVersion "25.0.1"
Make sure you update your support repository . Then Clean-Rebuild-Run.