So my problem is how to add multiple maven repositories to one gradle file.
This DOESN’T work:
repositories { mavenCentral()
you have to do like this in your project level gradle file
allprojects { repositories { jcenter() maven { url "http://dl.appnext.com/" } maven { url "https://maven.google.com" } } }