From: Will B. <wil...@cl...> - 2015-02-28 01:20:43
|
I am trying to use geojson in my android studio project. If I add this to my project's build.gradle: allprojects { repositories { mavenCentral() maven { url "http://download.osgeo.org/webdav/geotools" } } } and this to my app's build.gradle: dependencies { compile 'org.geotools:gt-geojson:12.2' } I get the following error: Error:Artifact 'jai_core.jar (javax.media:jai_core:1.1.3)' not found. Searched in the following locations: https://repo1.maven.org/maven2/javax/media/jai_core/1.1.3/jai_core-1.1.3.jar Is there a workaround? What is the correct way to build a gradle project depending on geojson? |