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

前端 未结 10 1084
长发绾君心
长发绾君心 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: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.

提交回复
热议问题