Can't Use Specific Methods In Mapbox Locationengine
I was trying to set up my own navigation app, but i can't use the methods listed here: https://github.com/mapbox/mapbox-java/blob/master/mapbox/app/src/main/java/com/mapbox/service
Solution 1:
Inside the readme, the SNAPSHOT snippet is only suggesting one dependency when Mapbox Services has 7.
repositories {
mavenCentral()
maven { url "http://oss.sonatype.org/content/repositories/snapshots/"}
}
dependencies {
compile'com.mapbox.mapboxsdk:mapbox-android-ui:2.1.0-SNAPSHOT'
}
see the documentation for more details.
Post a Comment for "Can't Use Specific Methods In Mapbox Locationengine"