Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 disabling the instant run
like image 206
santosh kumar Avatar asked Feb 04 '16 13:02

santosh kumar


2 Answers

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.

like image 157
Dinesh Sunny Avatar answered Nov 19 '22 20:11

Dinesh Sunny


I had easy steps & correct way also

1 - In Settings -> Build, Execution, Deployment option -> Instant Run

2 - Clear Enable instant run to hot swap code

3 - Clean project

p/s : It should totally work.

like image 33
Huy Tower Avatar answered Nov 19 '22 21:11

Huy Tower