Skip to content

Commit 8c0d2bd

Browse files
Guardiola31337zugaldia
authored andcommitted
Intellij support (#305)
* fix unable to find developer-config xml when building the project * fix javadoc generation issue (unmappable character for encoding ASCII)
1 parent 78eb686 commit 8c0d2bd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

mapbox/app/gradle-config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//
44

55
task accessToken {
6-
def tokenFile = new File("app/src/main/res/values/developer-config.xml")
6+
def tokenFile = new File("${projectDir}/src/main/res/values/developer-config.xml")
77
if (!tokenFile.exists()) {
88
String tokenFileContents = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" +
99
"<resources>\n" +

mapbox/libjava-services/src/main/java/com/mapbox/services/api/staticimage/v1/MapboxStaticImage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public Builder setZoom(double zoom) {
179179
}
180180

181181
/**
182-
* Optionally, bearing rotates the map around its center. A value of 90 rotates the map 90°
182+
* Optionally, bearing rotates the map around its center. A value of 90 rotates the map 90
183183
* to the left. 180 flips the map. Defaults is 0.
184184
*
185185
* @param bearing double number between 0 and 360, interpreted as decimal degrees.

0 commit comments

Comments
 (0)