Gradle sync failed: failed to find Build Tools revision 23.0.1 Consult IDE log for more details (Help | Show Log)
Solution:
Method 1:
A) Module Settings GUI
1) Go to Module Settings -> Press F4
2) Select “app” under Modules
3) Select the “Properties” tab
4) Check the Build Tools Version values.
5) See if you find the value “23.0.0rc3”
6) If not go to select the maximum possible value such as “23.0.0”
B) “gradle.build” update
In this change the buildToolsVersion
value in the build.gradle
file of app module from buildToolsVersion '23.0.0rc3'
to buildToolsVersion '23.0.0'
Method 2:
Try deleting rc3 from your buildToolsVersion
So you’ll have this
android {
compileSdkVersion 22
buildToolsVersion "23.0.0"
}
and not this
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc3"
}
Method 3:
Update your sdk with latest version of android API level 23 and update following line like….
buildToolsVersion "23.0.0"
Similar Posts:
- [Solved] Android Studio Error: Could not initialize class com.android.sdklib.repository.AndroidSdkHandler
- Android Studio starts the emulator and appears “Timed out after 300seconds waiting for emulator to come online” solution
- [Solved] Android Studio Error: Could not initialize class com.android.sdklib.repository.AndroidSdkHandler
- Could not find com.android.tools.build:gradle:3.3.0.
- AndroidStudio Error:Failed to resolve: com.android.support:appcompat-v7:29
- [Solved] Duplicate class com.blankj.utilcode.BuildConfig found in modules classes.jar
- Error:(1, 0) Plugin with id ‘android’ not found.
- [Solved] No resource found that matches the given name: attr ‘android:keyboardNavigationCluster’. when updati
- [Solved] Could not find method google() for arguments [] on repository container,rn react-native-camera …
- Plugin is too old, please update to a more recent