you can disable the version check with `-Dcom.andr...
# gradle
e
you can disable the version check with
-Dcom.android.build.gradle.overrideVersionCheck=true
on the command line or add this to your buildscript:
Copy code
buildscript {
  System.properties['com.android.build.gradle.overrideVersionCheck'] = 'true'
  ...
}