日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

【错误记录】Android Studio 编译报错 ( Could not find com.android.tools.build:gradle:4.2.1. )

發布時間:2025/6/17 Android 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【错误记录】Android Studio 编译报错 ( Could not find com.android.tools.build:gradle:4.2.1. ) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章目錄

  • 一、 報錯信息
  • 二、 解決方案





一、 報錯信息



導入了一個 Eclipse 項目 , 編譯后報如下錯誤 :

FAILURE: Build failed with an exception.* What went wrong: A problem occurred configuring root project 'MidiSheetMusic_02'. > Could not resolve all artifacts for configuration ':classpath'.> Could not find com.android.tools.build:gradle:4.2.1.Searched in the following locations:- https://jcenter.bintray.com/com/android/tools/build/gradle/4.2.1/gradle-4.2.1.pomIf the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.Required by:project :* Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights.* Exception is: org.gradle.api.ProjectConfigurationException: A problem occurred configuring root project 'MidiSheetMusic_02'.Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.android.tools.build:gradle:4.2.1. Searched in the following locations:- https://jcenter.bintray.com/com/android/tools/build/gradle/4.2.1/gradle-4.2.1.pom If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration. Required by:project :* Get more help at https://help.gradle.orgBUILD FAILED in 1s





二、 解決方案



檢查了下根目錄下的 build.gradle 配置 , 發現只配置了 jcenter 倉庫 ;

// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript {repositories {jcenter()}dependencies {classpath 'com.android.tools.build:gradle:4.2.1'} }allprojects {repositories {jcenter()} }

添加 google 倉庫 和 mavenCentral 倉庫 , 問題解決 ;

// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript {repositories {google()mavenCentral()jcenter()}dependencies {classpath 'com.android.tools.build:gradle:4.2.1'} }allprojects {repositories {google()mavenCentral()jcenter()} }

總結

以上是生活随笔為你收集整理的【错误记录】Android Studio 编译报错 ( Could not find com.android.tools.build:gradle:4.2.1. )的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。