gradle报错The server may not support the client‘s requested TLS protocol versions: (TLSv1.2, TLSv1.3).
修改gradle.properties文件,增加配置。
·
error Failed to install the app. Command failed with exit code 1: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081 FAILURE: Build failed
with an exception. * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not determine the dependencies of task
':gradle-plugin:compileJava'. > Could not resolve all task dependencies for configuration ':gradle-plugin:compileClasspath'. > Could not resolve org
.jetbrains.kotlin:kotlin-stdlib:1.8.0. Required by: project :gradle-plugin > org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 project :gradle-plugin >
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0 > org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0 > Could not resolve org.jetbrains.kotlin:kotlin-stdlib
:1.8.0. > Could not get resource 'https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/kotlin-stdlib-1.8.0.pom'. > Could no
t GET 'https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/kotlin-stdlib-1.8.0.pom'. > The server may not support the client's requested TLS protocol versions: (TLSv1.2, TLSv1.3). You may need to configure the client to allow other protocols to be used. For more on this, please refer to https://docs.gradle.org/8.3/userguide/build_environment.html#sec:gradle_system_properties in the Gradle documentation. > Remote host terminated the handshake * 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. BUILD FAILED in 11m 39s.
info Run CLI with --verbose flag for more details.
解决方案:
修改gradle.properties文件,增加配置
systemProp.jdk.tls.client.protocols=TLSv1.2,TLSv1.3
更多推荐



所有评论(0)