Re: [Geotools-gt2-users] dependency failure

2015-03-03 Thread Mark Prins
On 02-03-15 18:37, Will Bendick wrote: > Hi Mark, > > I tried this but it is still failing to build with the same error. I > have this in my build.gradle: > > dependencies { > compile fileTree(include: '*.jar', dir: 'libs') > compile 'org.geotools:gt-geojson:12.2' > compile 'com.goog

Re: [Geotools-gt2-users] dependency failure

2015-03-02 Thread Will Bendick
Hi Mark, I tried this but it is still failing to build with the same error. I have this in my build.gradle: dependencies { compile fileTree(include: '*.jar', dir: 'libs') compile 'org.geotools:gt-geojson:12.2' compile 'com.google.android.gms:play-services:+' compile 'com.android.s

Re: [Geotools-gt2-users] dependency failure

2015-03-02 Thread Jody Garnett
geotools does not currently work on android last I checked: 1. replace SPI service registery with SPI service loader 2. replace vecmath with anything else Projects I know that have forked have grabbed the code and wired it up by hand, rather than using service loader. See: * http://docs.oracle.c

Re: [Geotools-gt2-users] dependency failure

2015-03-02 Thread Mark Prins
On 28-02-15 01:27, Will Bendick wrote: > 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"; >

[Geotools-gt2-users] dependency failure

2015-02-27 Thread Will Bendick
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: dependenc