android studio - Plugin is too old, please update to a more recent version -


plugin old, please update more recent version, or set android_daily_override environment variable "aed79d567e57792ed352e708d2b7ca891ff897c6" can me? how update one

apply plugin: 'com.android.application' android { compilesdkversion 23 buildtoolsversion '23.0.2'  defaultconfig {     applicationid "xxxxxx.xxxx.xxx"     minsdkversion 16     targetsdkversion 23     versioncode 1     versionname "1.0" } buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     } }}   dependencies { compile filetree(include: ['*.jar'], dir: 'libs') testcompile 'junit:junit:4.12' compile files('libs/parse-1.10.2.jar') compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' compile 'com.parse.bolts:bolts-android:1.+' compile 'com.android.support:support-v4:23.1.1' compile 'com.google.android.gms:play-services:8.1.0'}' 

and i'm using plugin 'com.android.tools.build:gradle:2.0.0-alpha3'

do have idea may cause?

i had problem.solved going project gradle file changed class path from

dependencies {         classpath 'com.android.tools.build:gradle:2.0.0-alpha3' } 

to

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

1.5.0 looks stable me .


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -