android 在SHA 1生成期间失败:生成失败,出现异常

rkttyhzu  于 9个月前  发布在  Android
关注(0)|答案(1)|浏览(157)
PS C:\Users\IIITU\AndroidStudioProjects\loginpage_9> ./gradlew signingReport--debug 

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'firstversion'.
> Could not resolve all files for configuration ':classpath'.
   > Could not resolve com.android.tools.build:gradle:8.0.2.
     Required by:
         project :
         project : > com.android.application:com.android.application.gradle.plugin:8.0.2
         project : > com.android.library:com.android.library.gradle.plugin:8.0.2
      > No matching variant of com.android.tools.build:gradle:8.0.2 was found. The consumer was configured to find a library for use during runtime, compatible with Java 8, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '8.0' but:
          - Variant 'apiElements' capability com.android.tools.build:gradle:8.0.2 declares a library, packaged as a jar, and its dependencies declared externally:
              - Incompatible because this component declares a component for use during compile-time, compatible with Java 11 and the consumer needed a component for use during runtime, compatible with Java 8
              - Other compatible attribute:
                  - Doesn't say anything about org.gradle.plugin.api-version (required '8.0')
          - Variant 'javadocElements' capability com.android.tools.build:gradle:8.0.2 declares a component for use during runtime, 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 '8.0')
          - Variant 'runtimeElements' capability com.android.tools.build:gradle:8.0.2 declares a library for use during runtime, 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 '8.0')
          - Variant 'sourcesElements' capability com.android.tools.build:gradle:8.0.2 declares a component for use during runtime, 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 '8.0')

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

字符串
我想生成SHA1密钥时,iwm尝试生成signingreport它给了我这个错误,请帮助

62lalag4

62lalag41#

Gradle构建找不到与您的项目兼容的Android Gradle插件(AGP)版本。它正在寻找与Java 8兼容并打包为JavaScript文件的版本,但它只能找到与Java 11兼容的版本。
要解决此问题,您可以将项目降级为使用Java 11或将AGP版本升级为与Java 8兼容的版本。
你可以这样做来降级到Java 11:

android {
compileOptions {
    targetCompatibility JavaVersion.VERSION_11
    }
}

字符串

相关问题