File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33Mapbox welcomes participation and contributions from everyone.
44
5+ ### v1.3.0
6+
7+ * Geocoding widget now supports the ` bbox ` parameter
8+
59### v1.2.1
610
711* Fixes regresion in ` GeocoderAutoCompleteView `
Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ dependencies {
3434 compile ' com.android.support:design:23.3.0'
3535
3636 // Mapbox Java Services (development)
37- compile project(' :libjava' )
37+ // compile project(':libjava')
3838
3939 // Mapbox Java Services (release)
40- // compile ('com.mapbox.mapboxsdk:mapbox-java-services:2.0.0-SNAPSHOT@jar') {
41- // transitive=true
42- // }
40+ compile (' com.mapbox.mapboxsdk:mapbox-java-services:2.0.0-SNAPSHOT@jar' ) {
41+ transitive= true
42+ }
4343
4444 // Testing
4545 testCompile ' junit:junit:4.12'
@@ -48,3 +48,12 @@ dependencies {
4848apply from : ' gradle-javadoc.gradle'
4949apply from : ' gradle-checkstyle.gradle'
5050apply from : ' gradle-mvn-push.gradle'
51+
52+ // See: https://github.com/chrisbanes/gradle-mvn-push/issues/43#issuecomment-84140513
53+ afterEvaluate { project ->
54+ android. libraryVariants. all { variant ->
55+ tasks. androidJavadocs. doFirst {
56+ classpath + = files(variant. javaCompile. classpath. files)
57+ }
58+ }
59+ }
Original file line number Diff line number Diff line change 22
33Mapbox welcomes participation and contributions from everyone.
44
5+ ### v1.3.0
6+
7+ * ` RouteUtils ` class to simplify work with ` RouteLeg ` objects
8+ * ` geojson-tidy ` integrated with Map Matching client
9+ * Added Turf's ` midpoint ` , ` along ` , and ` within ` methods
10+ * Added an example to showcase Turf's ` lineslice `
11+
512### v1.2.1
613
714* Bring back ` toString() ` method in ` CarmenFeature `
You can’t perform that action at this time.
0 commit comments