This version of Android Studio cannot open this project, please retry with Android Studio 3.4 or newer

前端 未结 12 1803
孤街浪徒
孤街浪徒 2020-12-14 13:42

This version of Android Studio cannot open this project, please retry with Android Studio 3.4 or newer.

but my android studio version is 3.2.1 and there is no new up

相关标签:
12条回答
  • in project's build.gradle file comment classpath com.android.tools.build:gradle:. File → Project Structure select Android Gradle Plugin Version to match Android Studio version

    0 讨论(0)
  • 2020-12-14 14:27

    i just change gradle version classpath 'com.android.tools.build:gradle:3.5.3' to classpath 'com.android.tools.build:gradle:3.3.2' and now working.

    0 讨论(0)
  • 2020-12-14 14:29

    try to edit your project build.gradle file and set the android build gradle plugin to classpath 'com.android.tools.build:gradle:3.2.1' within the dependency section.

    Hope it helps...

    0 讨论(0)
  • 2020-12-14 14:30

    You can now update your android studio to 3.4 stable version. Updates for stable version are now available. cheers!!!

    0 讨论(0)
  • 2020-12-14 14:32

    Close VPN worked for me! It suprised me.

    0 讨论(0)
  • 2020-12-14 14:34

    Had the same Issue when i decided to install another version of Android Studio, what worked for me was:

    • Creating a new project with the current version of Android Studio just to go check the classpath version at the project level build.gradle inside the dependencies section, at the time it was this:

    classpath 'com.android.tools.build:gradle:3.5.0-rc01'

    Copied that line and replaced it on the project i was working on.

    0 讨论(0)
提交回复
热议问题