Unsupported method: AndroidProject.getPluginGeneration() while running project

69,067

Solution 1

General Issue:-

It can occur because AS was checking availability of the Instant Run feature. The fixed is to disable Instant Run:

Windows & Linux:

File -> Settings -> Build, Execution, Deployment -> Instant Run.

Mac:

Android Studio -> Preferences -> Build, Execution, Deployment -> Instant Run.

enter image description here

Thanks to @pophus for mentioning this.

Use this Steps If you are using a butterknife:-

If you are using the new Jack compiler with version 2.2.0 or newer, you do not need the 'android-apt' plugin and can instead replace apt with annotationProcessor when declaring the compiler dependency.

That is, remove

classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

from your main gradle file

And remove

apply plugin: 'android-apt'

from your main module file

and replace

apt 'com.jakewharton:butterknife-compiler:8.4.0'

with

annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

Solution 2

I encountered this error in Android Studio 2.2, in my case it was cause by AS checking availability of the Instant Run feature. I fixed it by disabling Instant Run:

Android Studio -> Preferences -> Build, Execution, Deployment -> Instant Run

Solution 3

Change gradle version to 2.2

dependencies {
    classpath 'com.android.tools.build:gradle:2.2.0'
}

Solution 4

On Windows it is

File / Settings/ Build, Execution, Deployment / Instant Run.

Uncheck Enable Instant Run to hot swap code...

Solution 5

just close instant run

Windows File -Settings- Build, Execution, Deployment - Instant Run.

MAC Android Studio -> Preferences -> Build, Execution, Deployment -> Instant Run.

Share:
69,067

Related videos on Youtube

JAAD
Author by

JAAD

Love to learn new things and new technologies.

Updated on July 08, 2022

Comments

  • JAAD
    JAAD almost 2 years

    I'm trying to run my Project with Android Studio 2.2 but I get this error

    Unsupported method: AndroidProject.getPluginGeneration().
    The version of Gradle you connect to does not support that method.
    

    I am using ButterKnife 8.4.0

    My app gradle.file:

    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.2.0'
            classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        }
    }
    

    My module gradle file:

    apply plugin: 'com.android.application'
    apply plugin: 'android-apt'
    
    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.3"
    
        defaultConfig {
            applicationId "xxx.xx"
            minSdkVersion 10
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }
    }
    
    dependencies {
        compile 'com.jakewharton:butterknife:8.4.0'
        apt 'com.jakewharton:butterknife-compiler:8.4.0'
    }
    

    Why does it not work and how do I solve it?

    • azizbekian
      azizbekian over 6 years
      @Tim Castelijns, what happens if you apply solutions from current answers?
    • Tim
      Tim over 6 years
      @azizbekian how is that relevant
  • JAAD
    JAAD almost 8 years
    sorry that was a typo i am infact using 2.2.0
  • Sayem
    Sayem almost 8 years
    then try by deleting your .idea folder & restart your ide. After project update to 2.2 I also faced different problems. One solution i found is to delete .idea folder. Now all are working fine.
  • gitter
    gitter almost 8 years
    Worked for my colleague. He was on gradle 1.2.3
  • Better Shao
    Better Shao almost 8 years
    You saved my life. I'm working on a project close to release and I don't want to upgrade gradle for it. This fix/workaround definitely helped.
  • JAAD
    JAAD almost 8 years
    @pophus it can occur due to different reason maybe instant run is one, I encountered this issue with butterknife
  • Allison
    Allison over 7 years
    I want to love instant run but it breaks things in such odd ways that it makes it impossible to use regularly without quite the time investment
  • JAAD
    JAAD over 7 years
    your answer doesn't add anything new, it has been already stated in other answers , can you clarify?
  • JAAD
    JAAD over 7 years
    your answer doesn't add anything new, it has been already stated in other answers , can you clarify?
  • Flot2011
    Flot2011 over 7 years
    It took me some time to find this option on Windows, so I wanted to save for others this time. As simple as that