Gradle Dsl Error Not Found Mavencentral()
I have tried to add some dependencies to my project but i kepp getting this error: Error:(21, 0) Gradle DSL method not found: 'mavenCentral()' Possible causes:
Solution 1:
this:
allprojects { repositories { mavenCentral() } mavenCentral() maven { url "http://indooratlas-ltd.bintray.com/mvn-public" } }
has to be changed to:
allprojects { repositories { mavenCentral() maven { url "http://indooratlas-ltd.bintray.com/mvn-public" } } }
Solution 2:
Post a Comment for "Gradle Dsl Error Not Found Mavencentral()"