I cant seem to get build tools for the latest gradle at all. I suspect its something to do with proxy setting for gradle. I have had a good look online but still cant seem t
The solution is in your build.gradle change this block:
allprojects { repositories { jcenter() google() } }
to google in first position :
allprojects { repositories { google() jcenter() } }