In order to be able to release the first version of the Mapbox Navigation SDK for Android as a standalone project, the following things need to happen:
cc: @cammace @danesfeder
Thank @1ec5 , added the item to OP and made the repo public at the same time.
Once https://github.com/mapbox/mapbox-navigation-android/pull/1 landed, code is effectively moved. We're now getting ready for a Maven release.
@langsmith @cammace The Navigation SDK is now available on Maven. All that we need to do to close this ticket is to update the README.md file with a basic SDK description, link to latest docs (version should be updated to 0.1), and installation instructions.
The snippet to add to your build.gradle to consume this SDK is the following:
// Mapbox Navigation SDK for Android
compile('com.mapbox.mapboxsdk:mapbox-android-navigation:0.1.0@aar') {
transitive = true
}
Ok, I will make those changes @zugaldia
Noting here that similar to our services SDK, you don't have to include the transitive part in your gradle file.
compile 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.1.0'
works the same.
Look like the readme is up to date and v0.1 has been released, closing this ticket.
Most helpful comment
@langsmith @cammace The Navigation SDK is now available on Maven. All that we need to do to close this ticket is to update the
README.mdfile with a basic SDK description, link to latest docs (version should be updated to 0.1), and installation instructions.The snippet to add to your
build.gradleto consume this SDK is the following: