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
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
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.
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...
You can now update your android studio to 3.4 stable version. Updates for stable version are now available. cheers!!!
Close VPN worked for me! It suprised me.
Had the same Issue when i decided to install another version of Android Studio, what worked for me was:
classpath 'com.android.tools.build:gradle:3.5.0-rc01'
Copied that line and replaced it on the project i was working on.