Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to

后端 未结 18 958
再見小時候
再見小時候 2020-11-28 04:01

today I just imported a sample app from Android SDK as a module in my project (analytics) and suddenly I got this gradle error when I try to sync it: Plugin is too old

18条回答
  •  野性不改
    2020-11-28 04:43

    Check the latest version of Gradle Plugin Here:

    You should change this in dependencies of app settings

    buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:[PLACE VERSION CODE HERE]'
    
    }
    

    }

提交回复
热议问题