This version of android studio is incompatible with the gradle version used.Try disabling the instant run

前端 未结 10 1082
长发绾君心
长发绾君心 2020-12-07 20:05

I am able to build the app properly, but when I run it I get this error:

This version of android studio is incompatible with the gradle version used.Try dis         


        
相关标签:
10条回答
  • 2020-12-07 20:30

    I just did a Build > Clean project and then reRun app!

    0 讨论(0)
  • 2020-12-07 20:31

    In Android Studio 2.3.3

    File -> Settings -> Build, Execution, Deployment -> Instant Run -> Unable Instant Run to hot swap code (Uncheck it)

    Now, you have disable Instant Run...

    It will solve Instant Run issue.

    0 讨论(0)
  • 2020-12-07 20:32

    You can use normal build run rather than instant run.

    Check first

    Go to Settings/Preferences > Build, Execution, Deployment option > Instant Run and uncheck all the three boxes.

    1. Upgrading Gradle services URL:

      Project > Gradle > Wrapper > gradle-wrapper.properties

      Change URL from

      distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 
      

      to

      distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
      

    (Find latest distributionUrl gradle plugin version Here: http://services.gradle.org/distributions

    **Make sure to use gradle-x.xx-all.zip )

    1. Delete your build folder

      When you run project, build folder will be created automatically

    2. Go to BUILD option in menu > Clean the project, Build the project

      It should work without instant run.

    0 讨论(0)
  • 2020-12-07 20:36

    I just Deleted the Build Folder and Clean project.It worked for me...!!!

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