I have a Gradle build file that contains the following section:
android { compileSdkVersion 18 buildToolsVersion "18.0.0"
This determines the exact version of the build tools used. Can this be indicated as a minimum requirement, as for dependencies?
I tried:
android { compileSdkVersion 18 buildToolsVersion "18.0.+"
Automatically use minor updates to build tools, if available, but this does not work. It raises the following error:
There was a problem evaluating the root project '####'.
Invalid full revision: 18.0. +
source share