0

today when i start new project an error occured said plugin is too old. and i click fix plugin version and fix project but the same error is still there after fixing plugin. Here is my application gradle file. '

buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.0-alpha6'

   // NOTE: Do not place your application dependencies here; they belong
   // in the individual module build.gradle files

} }

allprojects { repositories { jcenter() } }'

task clean(type: Delete) { delete rootProject.buildDir }

1 Answers1

0

Just set new ANDROID_DAILY_OVERRIDE value using terminal

launchctl setenv ANDROID_DAILY_OVERRIDE <your-value-on-error-message>

Need to do this every day

hov.terteryan
  • 758
  • 6
  • 16