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

rkttyhzu  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(300)
  1. PS C:\Users\IIITU\AndroidStudioProjects\loginpage_9> ./gradlew signingReport--debug
  2. FAILURE: Build failed with an exception.
  3. * What went wrong:
  4. A problem occurred configuring root project 'firstversion'.
  5. > Could not resolve all files for configuration ':classpath'.
  6. > Could not resolve com.android.tools.build:gradle:8.0.2.
  7. Required by:
  8. project :
  9. project : > com.android.application:com.android.application.gradle.plugin:8.0.2
  10. project : > com.android.library:com.android.library.gradle.plugin:8.0.2
  11. > 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:
  12. - Variant 'apiElements' capability com.android.tools.build:gradle:8.0.2 declares a library, packaged as a jar, and its dependencies declared externally:
  13. - 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
  14. - Other compatible attribute:
  15. - Doesn't say anything about org.gradle.plugin.api-version (required '8.0')
  16. - Variant 'javadocElements' capability com.android.tools.build:gradle:8.0.2 declares a component for use during runtime, and its dependencies declared externally:
  17. - Incompatible because this component declares documentation and the consumer needed a library
  18. - Other compatible attributes:
  19. - Doesn't say anything about its target Java version (required compatibility with Java 8)
  20. - Doesn't say anything about its elements (required them packaged as a jar)
  21. - Doesn't say anything about org.gradle.plugin.api-version (required '8.0')
  22. - 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:
  23. - Incompatible because this component declares a component, compatible with Java 11 and the consumer needed a component, compatible with Java 8
  24. - Other compatible attribute:
  25. - Doesn't say anything about org.gradle.plugin.api-version (required '8.0')
  26. - Variant 'sourcesElements' capability com.android.tools.build:gradle:8.0.2 declares a component for use during runtime, and its dependencies declared externally:
  27. - Incompatible because this component declares documentation and the consumer needed a library
  28. - Other compatible attributes:
  29. - Doesn't say anything about its target Java version (required compatibility with Java 8)
  30. - Doesn't say anything about its elements (required them packaged as a jar)
  31. - Doesn't say anything about org.gradle.plugin.api-version (required '8.0')
  32. * Try:
  33. > Run with --stacktrace option to get the stack trace.
  34. > Run with --info or --debug option to get more log output.
  35. > Run with --scan to get full insights.
  36. * 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:

  1. android {
  2. compileOptions {
  3. targetCompatibility JavaVersion.VERSION_11
  4. }
  5. }

字符串

相关问题