Skip to content

Commit

Permalink
[android] - disable crashing attribution (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobrun authored Feb 2, 2019
1 parent 7f74384 commit 42eecb7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@

class MapboxMapBuilder implements MapboxMapOptionsSink {
public final String TAG = getClass().getSimpleName();
private final MapboxMapOptions options = new MapboxMapOptions().textureMode(true);
private final MapboxMapOptions options = new MapboxMapOptions()
.textureMode(true)
.attributionEnabled(false);
private boolean trackCameraPosition = false;
private boolean myLocationEnabled = false;

Expand Down

0 comments on commit 42eecb7

Please sign in to comment.