Android Studio 升级 Flamingo 后 Gradle 又挂了

1.Gradle 7.2 才支持 Java 17

Unsupported Java.
Your build is currently configured to use Java 17.0.6 and Gradle 5.0.

Possible solution:
 - Upgrade Gradle wrapper to 7.2 version and re-import the project

 
2.Android plugin 7.1 才支持 Gradle 7.2

Unable to find method ''org.gradle.api.file.DirectoryProperty org.gradle.api.file.ProjectLayout.directoryProperty(org.gradle.api.provider.Provider)''
'org.gradle.api.file.DirectoryProperty org.gradle.api.file.ProjectLayout.directoryProperty(org.gradle.api.provider.Provider)'

Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)

Re-download dependencies and sync project (requires network)
The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.

Stop Gradle build processes (requires restart)
Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

Change Android plugin version to 7.1

3.阿里云的maven镜像仓库没有 gradle-7.1.pom,无解

Could not find com.android.tools.build:gradle:7.1.
Searched in the following locations:
  - https://maven.aliyun.com/nexus/content/groups/public/com/android/tools/build/gradle/7.1/gradle-7.1.pom
  - https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/7.1/gradle-7.1.pom
Required by:
    project :

你可能感兴趣的:(Android,android,studio,gradle)