相关文章推荐
沉着的墨镜  ·  security - PHP ...·  1 年前    · 
眼睛小的大白菜  ·  Time Travel Debugging ...·  1 年前    · 
冷冷的胡萝卜  ·  android - How to ...·  1 年前    · 


文章目录

  • 一、报错信息
  • 二、解决方案






一、报错信息



在 Mac 中安装了 Android Studio , 首次创建应用运行时 , 报如下错误 :

A problem occurred configuring root project 'DataBinding'.
> Could not resolve all files for configuration ':classpath'.
   > Could not resolve com.android.tools.build:gradle:7.4.2.
     Required by:
         project : > com.android.application:com.android.application.gradle.plugin:7.4.2
         project : > com.android.library:com.android.library.gradle.plugin:7.4.2
      > No matching variant of com.android.tools.build:gradle:7.4.2 was found. The consumer was configured to find a runtime of a library compatible with Java 8, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.5' but:
          - Variant 'apiElements' capability com.android.tools.build:gradle:7.4.2 declares a library, packaged as a jar, and its dependencies declared externally:
              - Incompatible because this component declares an API of a component compatible with Java 11 and the consumer needed a runtime of a component compatible with Java 8
              - Other compatible attribute:
                  - Doesn't say anything about org.gradle.plugin.api-version (required '7.5')
          - Variant 'javadocElements' capability com.android.tools.build:gradle:7.4.2 declares a runtime of a component, and its dependencies declared externally:
              - Incompatible because this component declares documentation and the consumer needed a library
              - Other compatible attributes:
                  - Doesn't say anything about its target Java version (required compatibility with Java 8)
                  - Doesn't say anything about its elements (required them packaged as a jar)
                  - Doesn't say anything about org.gradle.plugin.api-version (required '7.5')
          - Variant 'runtimeElements' capability com.android.tools.build:gradle:7.4.2 declares a runtime of a library, packaged as a jar, and its dependencies declared externally:
              - Incompatible because this component declares a component compatible with Java 11 and the consumer needed a component compatible with Java 8
              - Other compatible attribute:
                  - Doesn't say anything about org.gradle.plugin.api-version (required '7.5')
          - Variant 'sourcesElements' capability com.android.tools.build:gradle:7.4.2 declares a runtime of a component, and its dependencies declared externally:
              - Incompatible because this component declares documentation and the consumer needed a library
              - Other compatible attributes:
                  - Doesn't say anything about its target Java version (required compatibility with Java 8)
                  - Doesn't say anything about its elements (required them packaged as a jar)
                  - Doesn't say anything about org.gradle.plugin.api-version (required '7.5')
* Try:
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

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






二、解决方案



报错信息中有提示 : Doesn’t say anything about its target Java version (required compatibility with Java 8)

A problem occurred configuring root project ‘DataBinding’.
Could not resolve all files for configuration ‘:classpath’.
Could not resolve com.android.tools.build:gradle:7.4.2.
Required by:
project : > com.android.application:com.android.application.gradle.plugin:7.4.2
project : > com.android.library:com.android.library.gradle.plugin:7.4.2



说明该错误与 JDK 版本相关 , 当前使用的是最新版的 Android Studio , 这里将 JDK 更新成 JDK11 ;

查看当前的 JDK 版本 , 选择 " 菜单栏 / Android Studio / Preferences … " 选项 ,

【错误记录】Android Studio 编译报错 ( Could not resolve com.android.tools.build:gradle:7.4.2. )_android studio_02

在 Gradle 配置中 , 可以查看 JDK 版本 , 发现此处配置的 JDK 版本是 JDK8 ;

【错误记录】Android Studio 编译报错 ( Could not resolve com.android.tools.build:gradle:7.4.2. )_android studio_03

在 Gradle JDK 选项中 , 选择 JDK 11 选项 ;

【错误记录】Android Studio 编译报错 ( Could not resolve com.android.tools.build:gradle:7.4.2. )_错误记录_04

设置完毕后 , 重新编译应用 , 编译通过 ;

【错误记录】Android Studio 编译报错 ( Could not resolve com.android.tools.build:gradle:7.4.2. )_android studio_05


python遍历嵌套元组 python嵌套列表怎么遍历

作者:不渴望力量的哈士奇(哈哥) 文章目录访问列表及切片访问添加更新列表删除排序嵌套列表返回列表索引位置 写在文章之前文中的代码因是在Word上敲的,存在着直接复制到编译工具执行会报错的情况,如果发现报错,请查看是否是因为中文符号的原因. 文章目录访问列表及切片访问添加更新列表删除排序嵌套列表返回列表索引位置 访问列表及切片访问# list 列表:一组数据 # list 是有序的序列 # 序列中的

python基础编程题100 python编程经典例题

Python 经典例题1 循环题目:一个数如果恰好等于它的因子之和,这个数就称为”完数”。例如6=1+2+3.编程找出1000以内的所有完数。#!/usr/bin/python # -*- coding: UTF-8 -*- from sys import stdout for j in range(2,1001): k = [] n = -1 s = j